* {
    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-color: #ffffff;
}

.ad-disclosure {
    background-color: #f8f8f8;
    color: #666;
    text-align: center;
    padding: 6px 15px;
    font-size: 12px;
    border-bottom: 1px solid #e0e0e0;
}

.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c5282;
}

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

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

.main-nav a:hover {
    color: #2c5282;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

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

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

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

.hero-split {
    display: flex;
    align-items: center;
    min-height: 600px;
    gap: 60px;
    padding: 80px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    flex: 1;
}

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

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

.cta-primary {
    display: inline-block;
    background-color: #2c5282;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-primary:hover {
    background-color: #1e3a5f;
}

.cta-secondary {
    display: inline-block;
    background-color: #48bb78;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-secondary:hover {
    background-color: #38a169;
}

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

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.trust-indicators {
    background-color: #f7fafc;
    padding: 60px 30px;
}

.indicators-grid {
    display: flex;
    justify-content: space-around;
    gap: 40px;
}

.indicator {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.indicator-number {
    font-size: 42px;
    font-weight: 700;
    color: #2c5282;
    margin-bottom: 10px;
}

.indicator-label {
    font-size: 16px;
    color: #666;
}

.problem-section {
    padding: 90px 30px;
}

.split-content {
    display: flex;
    align-items: center;
    gap: 70px;
}

.split-content.reverse {
    flex-direction: row-reverse;
}

.content-text {
    flex: 1;
}

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

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

.content-image {
    flex: 1;
    background-color: #e8f0f7;
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.insight-section {
    background-color: #f9fafb;
    padding: 80px 30px;
}

.insight-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.insight-cards {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.insight-card {
    flex: 1;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.insight-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c5282;
}

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

.services-overview {
    padding: 90px 30px;
}

.services-overview h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #e8f0f7;
}

.service-card h3 {
    font-size: 22px;
    margin: 25px 25px 15px;
    color: #1a1a1a;
}

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

.price-tag {
    font-size: 24px;
    font-weight: 700;
    color: #2c5282;
    margin: 0 25px 20px;
}

.select-service {
    display: block;
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 12px 20px;
    background-color: #2c5282;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #1e3a5f;
}

.contact-form-section {
    background-color: #f7fafc;
    padding: 80px 30px;
}

.contact-form-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.form-intro {
    text-align: center;
    font-size: 17px;
    color: #666;
    margin-bottom: 50px;
}

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

.selected-service-display {
    background-color: #e6f7ff;
    padding: 15px 20px;
    border-radius: 6px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.selected-service-display button {
    background-color: #2c5282;
    color: #ffffff;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

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

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

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

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

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

.submit-btn:hover {
    background-color: #38a169;
}

.testimonials-inline {
    padding: 90px 30px;
    background-color: #f9fafb;
}

.testimonials-inline h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.testimonial-row {
    display: flex;
    gap: 40px;
}

.testimonial {
    flex: 1;
    background-color: #ffffff;
    padding: 30px;
    border-left: 4px solid #2c5282;
    border-radius: 4px;
}

.testimonial p {
    font-size: 16px;
    font-style: italic;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 15px;
}

.testimonial cite {
    font-size: 14px;
    color: #666;
    font-style: normal;
}

.final-cta {
    padding: 80px 30px;
    text-align: center;
}

.final-cta h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.final-cta p {
    font-size: 18px;
    color: #666;
    margin-bottom: 35px;
}

.site-footer {
    background-color: #1a202c;
    color: #cbd5e0;
    padding: 60px 30px 30px;
}

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

.footer-column {
    flex: 1;
}

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

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

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

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

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

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

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

.footer-bottom p {
    font-size: 13px;
    color: #a0aec0;
    margin-bottom: 10px;
    line-height: 1.6;
}

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

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

.cookie-content {
    max-width: 1200px;
    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;
}

.cookie-content a {
    color: #63b3ed;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-btn.accept {
    background-color: #48bb78;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #38a169;
}

.cookie-btn.reject {
    background-color: #4a5568;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #2d3748;
}

.page-hero {
    background-color: #f7fafc;
    padding: 80px 30px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 20px;
    color: #666;
}

.story-section {
    padding: 90px 30px;
}

.values-section {
    background-color: #f9fafb;
    padding: 80px 30px;
}

.values-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.value-item {
    flex: 1 1 calc(50% - 18px);
    min-width: 280px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c5282;
}

.value-item p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.7;
}

.team-section {
    padding: 80px 30px;
}

.team-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.team-description {
    max-width: 800px;
    margin: 0 auto;
}

.team-description p {
    font-size: 17px;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 18px;
}

.cta-section {
    background-color: #2c5282;
    color: #ffffff;
    padding: 80px 30px;
    text-align: center;
}

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #e6f7ff;
}

.service-detail {
    padding: 90px 30px;
}

.service-detail-card {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

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

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.price-display {
    font-size: 28px;
    font-weight: 700;
    color: #2c5282;
    margin-bottom: 25px;
}

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

.service-detail-content ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.service-detail-content ul li {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 10px;
    line-height: 1.6;
}

.service-cta {
    display: inline-block;
    background-color: #2c5282;
    color: #ffffff;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.service-cta:hover {
    background-color: #1e3a5f;
}

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

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.service-process {
    background-color: #f7fafc;
    padding: 80px 30px;
}

.service-process h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.process-step {
    flex: 1;
    text-align: center;
}

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

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

.process-step p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

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

.contact-layout {
    display: flex;
    gap: 70px;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
}

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

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c5282;
}

.contact-item p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.7;
}

.contact-image {
    flex: 1;
    background-color: #e8f0f7;
}

.contact-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.faq-section {
    background-color: #f9fafb;
    padding: 80px 30px;
}

.faq-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.faq-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #2c5282;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 30px;
    text-align: center;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: #48bb78;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.service-confirmation {
    background-color: #e6f7ff;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 40px;
    display: none;
}

.service-confirmation p {
    font-size: 16px;
    color: #1a1a1a;
}

.next-steps {
    text-align: left;
    margin-bottom: 50px;
}

.next-steps h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.next-steps ol {
    padding-left: 25px;
}

.next-steps ol li {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 12px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary {
    display: inline-block;
    background-color: #2c5282;
    color: #ffffff;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    background-color: #4a5568;
    color: #ffffff;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.legal-page {
    padding: 60px 30px 80px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.legal-intro {
    font-size: 15px;
    color: #666;
    margin-bottom: 40px;
}

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

.legal-page h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #2c5282;
}

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

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

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

.legal-page a {
    color: #2c5282;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        padding: 20px 30px;
        border-bottom: 1px solid #e8e8e8;
        gap: 20px;
    }

    .main-nav.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-split {
        flex-direction: column;
        min-height: auto;
        padding: 50px 20px;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .split-content,
    .split-content.reverse {
        flex-direction: column;
        gap: 40px;
    }

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

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

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

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

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }

    .indicators-grid {
        flex-direction: column;
        gap: 30px;
    }

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

    .value-item {
        flex: 1 1 100%;
    }

    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
        gap: 40px;
    }

    .process-steps {
        flex-direction: column;
    }

    .contact-layout {
        flex-direction: column;
        gap: 40px;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}
