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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

.cookie-banner.active {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    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);
}

.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 35px;
}

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

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

.ad-disclosure {
    font-size: 12px;
    color: #666;
    padding: 6px 12px;
    background: #f5f5f5;
    border-radius: 3px;
}

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background: #f8f9fa;
}

.hero-content {
    max-width: 520px;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 19px;
    color: #4a4a4a;
    margin-bottom: 32px;
    line-height: 1.7;
}

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

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

.btn-primary {
    display: inline-block;
    padding: 16px 36px;
    background: #0066cc;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    transition: background 0.3s ease;
}

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

.intro-statement {
    padding: 80px 40px;
    background: #ffffff;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.statement-text {
    font-size: 21px;
    line-height: 1.8;
    color: #2c2c2c;
    text-align: center;
}

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

.insight-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    align-items: center;
    background: #1a1a1a;
}

.insight-right {
    flex: 1;
    background: #c0c0c0;
}

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

.insight-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #ffffff;
}

.insight-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #d0d0d0;
    margin-bottom: 18px;
}

.benefits-asymmetric {
    padding: 100px 40px;
    background: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-header h2 {
    font-size: 38px;
    margin-bottom: 60px;
    text-align: center;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.benefit-card {
    background: #ffffff;
    padding: 40px 32px;
    max-width: 340px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.benefit-offset {
    margin-top: 40px;
}

.benefit-offset-reverse {
    margin-top: -20px;
}

.benefit-icon {
    color: #0066cc;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
}

.services-reveal {
    padding: 100px 40px;
    background: #ffffff;
}

.section-intro {
    text-align: center;
    margin-bottom: 70px;
}

.section-intro h2 {
    font-size: 40px;
    margin-bottom: 16px;
}

.section-intro p {
    font-size: 18px;
    color: #4a4a4a;
}

.services-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    max-width: 380px;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-image {
    background: #d0d0d0;
    height: 240px;
}

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

.service-info {
    padding: 28px;
}

.service-info h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.service-info p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.service-pricing {
    margin-bottom: 20px;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    display: block;
}

.price-note {
    font-size: 14px;
    color: #666;
}

.btn-select {
    width: 100%;
    padding: 14px;
    background: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.booking-form-section {
    padding: 100px 40px;
    background: #f8f9fa;
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
}

.form-header h2 {
    font-size: 36px;
    margin-bottom: 12px;
}

.form-header p {
    font-size: 17px;
    color: #4a4a4a;
}

.booking-form {
    background: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

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

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

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

.trust-section {
    padding: 100px 40px;
    background: #1a1a1a;
    color: #ffffff;
}

.trust-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-layout {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial {
    max-width: 360px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: #b0b0b0;
}

.cta-banner {
    padding: 80px 40px;
    background: #0066cc;
    color: #ffffff;
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: 40px;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 32px;
}

.btn-secondary {
    display: inline-block;
    padding: 16px 36px;
    background: #ffffff;
    color: #0066cc;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.btn-secondary:hover {
    background: #f0f0f0;
}

.site-footer {
    background: #1a1a1a;
    color: #b0b0b0;
    padding: 60px 40px 30px;
}

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

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

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

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

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

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

.footer-column a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
}

.disclaimer {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #888;
}

.copyright {
    font-size: 13px;
}

.contact-page-content {
    padding: 80px 40px;
}

.contact-page-content h1 {
    font-size: 42px;
    margin-bottom: 40px;
}

.contact-info {
    font-size: 17px;
    line-height: 1.8;
}

.contact-info p {
    margin-bottom: 16px;
}

.contact-info strong {
    display: block;
    margin-top: 24px;
    margin-bottom: 8px;
    font-size: 18px;
}

.legal-page {
    padding: 80px 40px;
}

.legal-page h1 {
    font-size: 38px;
    margin-bottom: 32px;
}

.legal-page h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #2c2c2c;
}

.legal-page ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

.legal-page li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 8px;
}

.thanks-page {
    padding: 120px 40px;
    text-align: center;
}

.thanks-page h1 {
    font-size: 44px;
    margin-bottom: 24px;
    color: #0066cc;
}

.thanks-page p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.thanks-page .selected-service {
    font-weight: 600;
    color: #1a1a1a;
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero-split {
        flex-direction: column;
    }

    .split-insight {
        flex-direction: column;
    }

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

    .benefit-offset,
    .benefit-offset-reverse {
        margin-top: 0;
    }

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