* {
    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: #333;
    background-color: #fff;
}

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

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

.cookie-banner.show {
    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;
    margin: 0;
    min-width: 300px;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
}

.cookie-accept {
    background-color: #007bff;
    color: #fff;
}

.cookie-accept:hover {
    background-color: #0056b3;
}

.cookie-reject {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

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

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

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    flex-wrap: wrap;
    gap: 20px;
}

.logo a {
    font-size: 24px;
    font-weight: 700;
    color: #007bff;
    text-decoration: none;
}

.ad-disclosure {
    font-size: 11px;
    color: #666;
    padding: 4px 12px;
    background-color: #f0f0f0;
    border-radius: 4px;
}

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

.main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #007bff;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: 0.3s;
}

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

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

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

.hero-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 32px;
    color: #555;
}

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #0056b3;
}

.cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #007bff;
    text-decoration: none;
    border: 2px solid #007bff;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background-color: #007bff;
    color: #fff;
}

.intro-offset {
    padding: 100px 0;
}

.intro-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-visual {
    flex: 0 0 45%;
    border-radius: 8px;
    overflow: hidden;
}

.intro-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.intro-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555;
}

.services-cards {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.section-intro-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-intro-center h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.section-intro-center p {
    font-size: 18px;
    color: #555;
}

.cards-grid-three {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.card-image {
    height: 240px;
    overflow: hidden;
}

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

.card-body {
    padding: 28px;
}

.card-body h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.card-body p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #666;
}

.price-tag {
    font-size: 24px;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 20px;
}

.card-cta {
    width: 100%;
    padding: 12px 24px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.card-cta:hover {
    background-color: #0056b3;
}

.trust-evidence {
    padding: 100px 0;
}

.evidence-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.evidence-content {
    flex: 1;
}

.evidence-content h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.evidence-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555;
}

.evidence-content a {
    color: #007bff;
    text-decoration: none;
}

.evidence-content a:hover {
    text-decoration: underline;
}

.inline-cta-box {
    margin-top: 40px;
    padding: 30px;
    background-color: #f8f9fa;
    border-left: 4px solid #007bff;
    border-radius: 4px;
}

.inline-cta-box p {
    margin-bottom: 16px;
}

.evidence-stats {
    flex: 0 0 320px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.stat-box {
    padding: 24px;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.form-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

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

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.form-intro p {
    font-size: 17px;
    color: #555;
}

.contact-form {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

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

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

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

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

.submit-button {
    width: 100%;
    padding: 16px 32px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #0056b3;
}

.disclaimer-section {
    padding: 60px 0;
    background-color: #fff;
}

.disclaimer-box {
    padding: 30px;
    background-color: #fff8e1;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
}

.disclaimer-box h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.disclaimer-box p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.main-footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

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

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

.footer-col li {
    margin-bottom: 8px;
}

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

.footer-col a:hover {
    color: #fff;
}

.footer-references {
    margin-bottom: 30px;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.footer-references h4 {
    font-size: 16px;
    margin-bottom: 12px;
}

.footer-references p {
    font-size: 13px;
    color: #ccc;
    line-height: 1.6;
}

.footer-references a {
    color: #007bff;
    text-decoration: none;
}

.footer-references a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 14px;
    color: #999;
}

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

.thanks-box {
    max-width: 600px;
    text-align: center;
    padding: 60px 40px;
    background-color: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background-color: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #fff;
}

.thanks-box h1 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.thanks-box p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 12px;
    color: #555;
}

.thanks-service {
    font-weight: 600;
    color: #007bff;
}

.thanks-box .cta-primary {
    margin-top: 30px;
}

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

.legal-content h1 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #333;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #555;
}

.legal-content ul,
.legal-content ol {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 8px;
    color: #555;
}

.contact-info-section {
    padding: 80px 0;
}

.contact-grid {
    display: flex;
    gap: 60px;
    margin-top: 50px;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

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

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #333;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.contact-map {
    flex: 1;
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 40px;
    text-align: center;
}

.services-list-section {
    padding: 80px 0;
}

.services-list-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.services-list-intro h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-list-intro p {
    font-size: 18px;
    color: #555;
}

.about-section {
    padding: 80px 0;
}

.about-hero {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

.about-hero h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.about-hero p {
    font-size: 19px;
    line-height: 1.7;
    color: #555;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-block {
    margin-bottom: 60px;
}

.about-block h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.about-block p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #555;
}

@media (max-width: 968px) {
    .main-nav {
        display: none;
    }

    .main-nav.mobile-active {
        display: block;
        width: 100%;
        order: 4;
    }

    .main-nav.mobile-active ul {
        flex-direction: column;
        gap: 16px;
        padding: 20px 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

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

    .hero-left {
        padding: 40px 20px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .intro-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .intro-visual {
        flex: 1;
    }

    .evidence-layout {
        flex-direction: column;
    }

    .evidence-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .stat-box {
        flex: 1 1 calc(50% - 12px);
    }

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

    .service-card {
        flex: 1 1 100%;
    }
}

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

    .hero-content p {
        font-size: 16px;
    }

    .section-intro-center h2 {
        font-size: 28px;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: stretch;
    }

    .cookie-accept,
    .cookie-reject {
        flex: 1;
    }
}