* {
    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.7;
    color: #2c3e50;
    background-color: #ffffff;
    overflow-x: hidden;
}

.ad-disclosure {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px 20px;
    font-size: 12px;
    color: #6c757d;
    border-bottom: 1px solid #e9ecef;
}

.main-header {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #1e3a8a;
    letter-spacing: -0.5px;
}

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

.nav-menu a {
    text-decoration: none;
    color: #334155;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #1e3a8a;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    background-color: #f1f5f9;
}

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

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 28px;
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 38px;
    color: #e0e7ff;
}

.hero-image {
    flex: 1;
    background-color: #cbd5e1;
}

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

.intro-section {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 90px 40px;
}

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

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

.intro-right {
    flex: 1;
    padding: 60px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.services-preview {
    background-color: #f8fafc;
    padding: 80px 40px;
}

.section-header-centered {
    max-width: 800px;
    margin: 0 auto 70px;
    text-align: center;
}

.section-header-centered h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1e293b;
    font-weight: 700;
}

.section-header-centered p {
    font-size: 18px;
    color: #64748b;
    line-height: 1.7;
}

.service-card-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto 50px;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.service-card-split.reverse {
    flex-direction: row-reverse;
}

.service-info {
    flex: 1;
    padding: 50px 55px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1e293b;
    font-weight: 600;
}

.service-info p {
    font-size: 16px;
    line-height: 1.75;
    color: #475569;
    margin-bottom: 25px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 25px;
}

.service-visual {
    flex: 1;
    background-color: #e2e8f0;
}

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

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #1e3a8a;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #1e40af;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #e2e8f0;
    color: #334155;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #cbd5e1;
}

.btn-service {
    padding: 13px 28px;
    background-color: #3b82f6;
    color: #ffffff;
    border: none;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-service:hover {
    background-color: #2563eb;
}

.cta-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.cta-text {
    flex: 1;
    padding: 60px 55px 60px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-text h2 {
    font-size: 38px;
    margin-bottom: 22px;
    color: #1e293b;
    font-weight: 700;
}

.cta-text p {
    font-size: 17px;
    line-height: 1.75;
    color: #475569;
}

.cta-form-container {
    flex: 1;
    padding: 45px;
    background-color: #f8fafc;
    border-left: 4px solid #1e3a8a;
}

.inline-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select {
    padding: 12px 16px;
    border: 1px solid #cbd5e1;
    font-size: 15px;
    background-color: #ffffff;
    color: #1e293b;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #1e3a8a;
}

.values-section {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

.values-content {
    flex: 1;
    padding: 50px 60px 50px 0;
}

.values-content h2 {
    font-size: 40px;
    margin-bottom: 45px;
    color: #1e293b;
    font-weight: 700;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.value-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1e3a8a;
    font-weight: 600;
}

.value-item p {
    font-size: 16px;
    line-height: 1.75;
    color: #475569;
}

.values-image {
    flex: 1;
    background-color: #e2e8f0;
}

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

.main-footer {
    background-color: #1e293b;
    color: #e2e8f0;
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

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

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

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

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

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

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 25px;
    background-color: #334155;
    font-size: 13px;
    line-height: 1.7;
    color: #cbd5e1;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid #334155;
    font-size: 13px;
    color: #94a3b8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    color: #ffffff;
    padding: 25px 40px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
    color: #e2e8f0;
}

.cookie-content a {
    color: #93c5fd;
    text-decoration: underline;
}

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

.page-hero {
    background-color: #1e3a8a;
    color: #ffffff;
    padding: 80px 40px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 18px;
    font-weight: 700;
}

.page-hero p {
    font-size: 19px;
    color: #e0e7ff;
}

.about-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.about-text {
    flex: 1;
    padding: 50px 60px 50px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #1e293b;
    font-weight: 700;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 22px;
    color: #475569;
}

.about-image {
    flex: 1;
    background-color: #e2e8f0;
}

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

.expertise-section {
    display: flex;
    max-width: 1400px;
    margin: 0 auto 80px;
    padding: 0 40px;
    flex-direction: row-reverse;
}

.expertise-visual {
    flex: 1;
    background-color: #e2e8f0;
}

.expertise-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expertise-content {
    flex: 1;
    padding: 50px 0 50px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.expertise-content h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #1e293b;
    font-weight: 700;
}

.expertise-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 22px;
    color: #475569;
}

.approach-section {
    background-color: #f8fafc;
    padding: 80px 40px;
}

.approach-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1e293b;
    font-weight: 700;
}

.approach-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto 40px;
    gap: 50px;
}

.approach-item {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.approach-item h3 {
    font-size: 24px;
    margin-bottom: 18px;
    color: #1e3a8a;
    font-weight: 600;
}

.approach-item p {
    font-size: 16px;
    line-height: 1.75;
    color: #475569;
}

.commitment-section {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 40px;
}

.commitment-content h2 {
    font-size: 40px;
    margin-bottom: 35px;
    color: #1e293b;
    font-weight: 700;
    text-align: center;
}

.commitment-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #475569;
    text-align: justify;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

.service-detail-card {
    display: flex;
    margin-bottom: 70px;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1;
    padding: 55px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1e293b;
    font-weight: 700;
}

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

.service-pricing {
    display: flex;
    flex-direction: column;
    margin: 30px 0;
}

.price-label {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
    margin-bottom: 8px;
}

.price-value {
    font-size: 36px;
    font-weight: 700;
    color: #1e3a8a;
}

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

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

.services-cta {
    text-align: center;
    padding: 60px 40px;
    background-color: #f8fafc;
    margin-top: 40px;
}

.services-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1e293b;
    font-weight: 700;
}

.services-cta p {
    font-size: 17px;
    margin-bottom: 30px;
    color: #475569;
}

.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.contact-info {
    flex: 1;
    padding: 50px 60px 50px 0;
}

.contact-info h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #1e293b;
    font-weight: 700;
}

.info-block {
    margin-bottom: 32px;
}

.info-block h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1e3a8a;
    font-weight: 600;
}

.info-block p {
    font-size: 16px;
    line-height: 1.75;
    color: #475569;
}

.contact-visual {
    flex: 1;
    background-color: #e2e8f0;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.how-to-reach {
    max-width: 1400px;
    margin: 0 auto 80px;
    padding: 0 40px;
}

.how-to-reach h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1e293b;
    font-weight: 700;
}

.reach-split {
    display: flex;
    gap: 50px;
}

.reach-method {
    flex: 1;
    padding: 35px;
    background-color: #f8fafc;
    border-left: 4px solid #1e3a8a;
}

.reach-method h3 {
    font-size: 22px;
    margin-bottom: 18px;
    color: #1e293b;
    font-weight: 600;
}

.reach-method p {
    font-size: 15px;
    line-height: 1.8;
    color: #475569;
}

.contact-note {
    max-width: 1100px;
    margin: 0 auto 80px;
    padding: 40px;
    background-color: #fef3c7;
    border-left: 4px solid #f59e0b;
}

.contact-note p {
    font-size: 16px;
    line-height: 1.75;
    color: #92400e;
}

.thanks-hero {
    background-color: #f8fafc;
    padding: 100px 40px;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-content h1 {
    font-size: 44px;
    margin-bottom: 22px;
    color: #1e3a8a;
    font-weight: 700;
}

.thanks-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #475569;
}

.thanks-details {
    margin-top: 30px;
    padding: 25px;
    background-color: #e0e7ff;
    font-size: 16px;
    color: #1e3a8a;
    font-weight: 500;
}

.next-steps {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

.next-steps h2 {
    font-size: 38px;
    margin-bottom: 50px;
    color: #1e293b;
    font-weight: 700;
    text-align: center;
}

.steps-container {
    display: flex;
    gap: 40px;
}

.step-item {
    flex: 1;
    padding: 40px;
    background-color: #f8fafc;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #1e3a8a;
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border-radius: 50%;
}

.step-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1e293b;
    font-weight: 600;
}

.step-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
}

.thanks-note {
    max-width: 800px;
    margin: 0 auto 80px;
    padding: 0 40px;
    text-align: center;
}

.thanks-note p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #475569;
}

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1e293b;
    font-weight: 700;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 45px;
    margin-bottom: 20px;
    color: #1e3a8a;
    font-weight: 600;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #334155;
    font-weight: 600;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #475569;
}

.legal-page ul,
.legal-page ol {
    margin-left: 30px;
    margin-bottom: 18px;
}

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

.legal-page table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.legal-page table th,
.legal-page table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #cbd5e1;
}

.legal-page table th {
    background-color: #f1f5f9;
    font-weight: 600;
    color: #1e293b;
}

.legal-page table td {
    color: #475569;
}

.legal-page a {
    color: #1e3a8a;
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-section,
    .service-card-split,
    .cta-split,
    .values-section,
    .about-split,
    .expertise-section,
    .contact-split,
    .service-detail-card {
        flex-direction: column;
    }

    .service-card-split.reverse,
    .service-detail-card.reverse {
        flex-direction: column;
    }

    .hero-content,
    .intro-right,
    .service-info,
    .cta-text,
    .values-content,
    .about-text,
    .expertise-content,
    .contact-info,
    .service-detail-content {
        padding: 50px 40px;
    }

    .cta-form-container {
        padding: 40px;
    }

    .nav-menu {
        gap: 20px;
    }

    .approach-split,
    .reach-split,
    .steps-container {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 38px;
    }

    .navigation {
        padding: 15px 20px;
    }

    .nav-menu {
        flex-wrap: wrap;
        gap: 15px;
    }

    .hero-content,
    .intro-right,
    .service-info {
        padding: 35px 25px;
    }

    .section-header-centered h2,
    .approach-section h2 {
        font-size: 32px;
    }

    .legal-page {
        padding: 0 25px;
    }

    .ad-disclosure {
        font-size: 11px;
        padding: 6px 15px;
    }
}