* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

img {
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #ffffff;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.btn-accept, .btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #0066cc;
    color: #ffffff;
}

.btn-accept:hover {
    background: #0052a3;
}

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-reject:hover {
    background: rgba(255,255,255,0.1);
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.ad-disclosure {
    font-size: 11px;
    color: #666666;
    padding: 4px 10px;
    background: #f5f5f5;
    border-radius: 3px;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #0066cc;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background: #f8f9fa;
}

.hero-left h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-left p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 36px;
    max-width: 500px;
}

.hero-right {
    flex: 1;
    background: #e0e0e0;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #0066cc;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.cta-primary:hover {
    background: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,102,204,0.3);
}

.intro-split {
    display: flex;
    align-items: stretch;
}

.intro-left {
    flex: 1;
    background: #d5d5d5;
}

.intro-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-right {
    flex: 1;
    padding: 80px 60px;
    background: #ffffff;
}

.intro-right h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 700;
}

.intro-right p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.services-preview {
    padding: 100px 60px;
    background: #fafafa;
}

.services-preview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 700;
}

.services-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    max-width: 360px;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background: #e0e0e0;
}

.service-card h3 {
    font-size: 24px;
    margin: 24px 24px 12px 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #666666;
    margin: 0 24px 16px 24px;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #0066cc;
    margin: 0 24px 20px 24px;
}

.select-service {
    width: calc(100% - 48px);
    margin: 0 24px 24px 24px;
    padding: 14px;
    background: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background: #0052a3;
}

.cta-center {
    text-align: center;
    margin-top: 40px;
}

.cta-center a {
    font-size: 17px;
    color: #0066cc;
    font-weight: 600;
    border-bottom: 2px solid #0066cc;
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

.cta-center a:hover {
    color: #0052a3;
    border-bottom-color: #0052a3;
}

.trust-split {
    display: flex;
    align-items: stretch;
}

.trust-left {
    flex: 1;
    padding: 80px 60px;
    background: #ffffff;
}

.trust-left h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 700;
}

.trust-left p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.trust-right {
    flex: 1;
    background: #d5d5d5;
}

.trust-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials {
    padding: 100px 60px;
    background: #1a1a1a;
    color: #ffffff;
}

.testimonials h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.testimonial-grid {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    max-width: 360px;
    padding: 36px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: #999999;
    font-weight: 600;
}

.booking-split {
    display: flex;
    min-height: 600px;
}

.booking-left {
    flex: 1;
    padding: 80px 60px;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.booking-left h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.booking-left p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
}

.booking-right {
    flex: 1;
    padding: 80px 60px;
    background: #ffffff;
    display: flex;
    align-items: center;
}

.booking-form {
    width: 100%;
    max-width: 500px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #0052a3;
}

.final-cta {
    padding: 100px 60px;
    background: #0066cc;
    color: #ffffff;
    text-align: center;
}

.final-cta h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.final-cta p {
    font-size: 20px;
    margin-bottom: 36px;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 48px;
    background: #ffffff;
    color: #0066cc;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255,255,255,0.3);
}

.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 80px 60px 30px 60px;
}

.footer-content {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 50px auto;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h3 {
    font-size: 22px;
    margin-bottom: 16px;
    font-weight: 700;
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 16px;
    font-weight: 700;
    color: #ffffff;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: #999999;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    font-size: 14px;
    color: #999999;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px auto;
    padding: 24px;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.1);
}

.footer-disclaimer p {
    font-size: 12px;
    line-height: 1.6;
    color: #999999;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 13px;
    color: #666666;
}

.page-header {
    padding: 100px 60px 60px 60px;
    background: #f8f9fa;
    text-align: center;
}

.page-header h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.page-header p {
    font-size: 18px;
    color: #666666;
    max-width: 700px;
    margin: 0 auto;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 60px;
}

.content-split {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.content-main {
    flex: 2;
}

.content-sidebar {
    flex: 1;
    background: #f8f9fa;
    padding: 36px;
    border-radius: 8px;
}

.content-main h2 {
    font-size: 32px;
    margin: 40px 0 20px 0;
    color: #1a1a1a;
    font-weight: 700;
}

.content-main h3 {
    font-size: 24px;
    margin: 30px 0 16px 0;
    color: #1a1a1a;
    font-weight: 700;
}

.content-main p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 16px;
}

.content-main ul,
.content-main ol {
    margin: 16px 0 16px 24px;
}

.content-main li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 8px;
}

.services-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-detail-card {
    display: flex;
    gap: 40px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    align-items: center;
}

.service-detail-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    background: #e0e0e0;
}

.service-detail-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.service-detail-content {
    flex: 1;
    padding: 40px;
}

.service-detail-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.service-detail-content .price {
    font-size: 32px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 20px;
    display: block;
}

.service-detail-content ul {
    list-style: none;
    margin: 20px 0;
}

.service-detail-content ul li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 10px;
}

.service-detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
}

.contact-info {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-detail {
    margin-bottom: 24px;
}

.contact-detail h4 {
    font-size: 14px;
    font-weight: 700;
    color: #666666;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-detail p {
    font-size: 16px;
    color: #1a1a1a;
    line-height: 1.6;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 60px;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-content h2 {
    font-size: 28px;
    margin: 40px 0 20px 0;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 22px;
    margin: 30px 0 16px 0;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 16px 0 16px 24px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 10px;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.thanks-content {
    max-width: 600px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.thanks-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #666666;
    margin-bottom: 36px;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .trust-split,
    .booking-split,
    .content-split {
        flex-direction: column;
    }

    .service-detail-card,
    .service-detail-card:nth-child(even) {
        flex-direction: column;
    }

    .services-grid {
        flex-direction: column;
        align-items: center;
    }

    .header-split {
        flex-direction: column;
        gap: 20px;
    }

    .testimonial-grid {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .header-split {
        padding: 15px 20px;
    }

    .hero-left,
    .intro-right,
    .trust-left,
    .booking-left,
    .booking-right {
        padding: 60px 30px;
    }

    .hero-left h1,
    .page-header h1 {
        font-size: 36px;
    }

    .services-preview,
    .testimonials,
    .final-cta {
        padding: 60px 30px;
    }

    .footer {
        padding: 60px 30px 30px 30px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
}