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

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

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

.ad-disclosure {
    background-color: #fef3c7;
    color: #92400e;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #fbbf24;
}

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

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
}

.hero-section {
    position: relative;
    color: #ffffff;
}

.hero-background {
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 120px 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 32, 44, 0.9), rgba(45, 55, 72, 0.8));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #e2e8f0;
}

.cta-button {
    display: inline-block;
    background-color: #fbbf24;
    color: #1a202c;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: transform 0.2s, background-color 0.3s;
}

.cta-button:hover {
    background-color: #f59e0b;
    transform: translateY(-2px);
}

.intro-cards {
    padding: 80px 0;
    background-color: #f7fafc;
}

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

.intro-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

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

.intro-card p {
    color: #4a5568;
    line-height: 1.7;
}

.problem-section {
    padding: 100px 0;
    background-color: #ffffff;
}

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

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a202c;
    line-height: 1.3;
}

.split-content p {
    margin-bottom: 20px;
    color: #4a5568;
    font-size: 17px;
}

.content-split-reverse {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-direction: row-reverse;
}

.insight-section {
    padding: 80px 0;
    background-color: #2d3748;
    color: #ffffff;
}

.insight-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    line-height: 1.4;
}

.insight-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #e2e8f0;
    line-height: 1.8;
}

.services-section {
    padding: 100px 0;
    background-color: #f7fafc;
}

.section-title {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a202c;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 320px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

.service-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a202c;
}

.service-content p {
    color: #4a5568;
    margin-bottom: 20px;
    flex-grow: 1;
    line-height: 1.7;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
}

.select-service-btn {
    background-color: #3182ce;
    color: #ffffff;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.select-service-btn:hover {
    background-color: #2c5282;
    transform: scale(1.02);
}

.trust-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.trust-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a202c;
}

.trust-cards {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-card {
    flex: 1;
    min-width: 300px;
    padding: 35px;
    background-color: #f7fafc;
    border-left: 4px solid #fbbf24;
    border-radius: 8px;
}

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

.testimonial-author {
    font-weight: 600;
    color: #4a5568;
}

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

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.form-intro h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a202c;
}

.form-intro p {
    margin-bottom: 30px;
    color: #4a5568;
    font-size: 16px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #2d3748;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.submit-button {
    background-color: #38a169;
    color: #ffffff;
    padding: 16px 32px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.submit-button:hover {
    background-color: #2f855a;
    transform: translateY(-2px);
}

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

.disclaimer-text {
    font-size: 14px;
    line-height: 1.8;
    color: #78350f;
    padding: 20px;
    background-color: #fef3c7;
    border-radius: 8px;
    border-left: 4px solid #f59e0b;
}

.main-footer {
    background-color: #1a202c;
    color: #e2e8f0;
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

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

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

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fbbf24;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 20px;
    text-align: center;
    color: #a0aec0;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -4px 12px 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: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
    color: #e2e8f0;
}

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

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.cookie-btn.accept:hover {
    background-color: #2f855a;
}

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

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

.page-hero {
    background: linear-gradient(135deg, #2d3748, #1a202c);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

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

.about-content {
    padding: 80px 0;
    background-color: #ffffff;
}

.values-section {
    padding: 80px 0;
    background-color: #f7fafc;
}

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

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

.value-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a202c;
}

.value-card p {
    color: #4a5568;
    line-height: 1.7;
}

.approach-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: #fbbf24;
    min-width: 80px;
}

.step-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a202c;
}

.step-content p {
    color: #4a5568;
    line-height: 1.7;
}

.team-section {
    padding: 80px 0;
    background-color: #edf2f7;
}

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

.team-intro {
    max-width: 800px;
    margin: 0 auto 20px;
    text-align: center;
    color: #4a5568;
    font-size: 17px;
    line-height: 1.8;
}

.services-detailed {
    padding: 80px 0;
    background-color: #f7fafc;
}

.service-detail-card {
    max-width: 900px;
    margin: 0 auto 60px;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.service-detail-header h2 {
    font-size: 32px;
    color: #1a202c;
    flex: 1;
}

.service-price-large {
    font-size: 36px;
    font-weight: 700;
    color: #2d3748;
}

.service-detail-content {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.service-detail-text {
    flex: 1;
    min-width: 300px;
}

.service-detail-text h3 {
    font-size: 22px;
    margin: 25px 0 15px;
    color: #1a202c;
}

.service-detail-text p {
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.7;
}

.service-detail-text ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.service-detail-text li {
    margin-bottom: 10px;
    color: #4a5568;
    line-height: 1.7;
}

.service-note {
    background-color: #fffbeb;
    padding: 15px;
    border-left: 4px solid #fbbf24;
    font-size: 15px;
    color: #78350f;
}

.service-detail-image {
    flex: 0 0 300px;
}

.service-detail-image img {
    width: 100%;
    border-radius: 8px;
}

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

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

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

.cta-button-large {
    display: inline-block;
    background-color: #fbbf24;
    color: #1a202c;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 6px;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-button-large:hover {
    background-color: #f59e0b;
    transform: translateY(-2px);
}

.cta-button-secondary {
    display: inline-block;
    background-color: transparent;
    color: #fbbf24;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border: 2px solid #fbbf24;
    border-radius: 6px;
    transition: background-color 0.3s;
    margin-left: 20px;
}

.cta-button-secondary:hover {
    background-color: rgba(251, 191, 36, 0.1);
}

.contact-info-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.contact-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-card {
    flex: 1;
    min-width: 280px;
    background-color: #f7fafc;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
}

.contact-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a202c;
}

.contact-card p {
    color: #4a5568;
    line-height: 1.7;
}

.email-display {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 10px;
}

.email-note {
    font-size: 14px;
    color: #718096;
}

.contact-additional {
    padding: 60px 0;
    background-color: #f7fafc;
}

.contact-additional h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a202c;
}

.contact-additional p {
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.7;
}

.contact-additional a {
    color: #3182ce;
    text-decoration: underline;
}

.map-placeholder {
    padding: 60px 0;
    background-color: #edf2f7;
}

.map-info {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    text-align: center;
}

.map-info p {
    color: #4a5568;
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 0;
    background-color: #f7fafc;
}

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

.thanks-icon {
    font-size: 80px;
    color: #38a169;
    margin-bottom: 30px;
}

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

.thanks-message {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 40px;
    line-height: 1.7;
}

.service-confirmation {
    background-color: #e6fffa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.selected-service-display {
    color: #234e52;
    font-size: 16px;
    line-height: 1.7;
}

.next-steps {
    margin: 50px 0;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #1a202c;
}

.steps-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.step-box {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.step-box .step-number {
    display: block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background-color: #fbbf24;
    color: #1a202c;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin: 0 auto 20px;
}

.step-box p {
    color: #4a5568;
    line-height: 1.7;
}

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

.legal-content {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.last-updated {
    color: #718096;
    margin-bottom: 40px;
    font-size: 14px;
}

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

.legal-content h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: #2d3748;
}

.legal-content p {
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.8;
}

.legal-content ul {
    margin: 20px 0 20px 30px;
}

.legal-content li {
    margin-bottom: 12px;
    color: #4a5568;
    line-height: 1.7;
}

.legal-content strong {
    color: #2d3748;
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #1a202c;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

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

    .nav-toggle {
        display: flex;
    }

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

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

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

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

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

    .form-wrapper {
        padding: 30px 20px;
    }

    .step-item {
        flex-direction: column;
    }

    .step-number {
        text-align: center;
    }

    .service-detail-card {
        padding: 30px 20px;
    }

    .service-detail-content {
        flex-direction: column;
    }

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

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

    .cta-button-secondary {
        margin-left: 0;
        margin-top: 10px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}
