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

html {
    scroll-behavior: smooth;
}

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

a {
    color: inherit;
    text-decoration: none;
}

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

ul {
    list-style: none;
}

.site-header {
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand-link {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e40af;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #6b7280;
    background-color: #f3f4f6;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle-bar {
    width: 24px;
    height: 3px;
    background-color: #1f2937;
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-list a {
    color: #374151;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.2s ease;
}

.nav-list a:hover {
    color: #1e40af;
}

.hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.cta-button-primary {
    display: inline-block;
    background-color: #1e40af;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

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

.cta-button-secondary {
    display: inline-block;
    background-color: #059669;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

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

.intro-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.intro-container {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 2rem;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.intro-text p {
    color: #4b5563;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.intro-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
}

.intro-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.problem-section {
    padding: 6rem 2rem;
    background-color: #f9fafb;
}

.problem-container {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.problem-visual {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
}

.problem-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.problem-content {
    flex: 1;
}

.problem-content h2 {
    font-size: 2rem;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.problem-list {
    margin-bottom: 1.5rem;
}

.problem-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #4b5563;
    font-size: 1.05rem;
}

.problem-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: bold;
}

.problem-content p {
    color: #374151;
    font-size: 1.1rem;
}

.insight-section {
    padding: 6rem 2rem;
    background-color: #1e3a8a;
    color: #ffffff;
}

.insight-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.insight-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
}

.insight-cards {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.insight-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    flex: 1;
    min-width: 250px;
    max-width: 320px;
}

.insight-number {
    font-size: 3rem;
    font-weight: 800;
    color: #93c5fd;
    margin-bottom: 0.5rem;
}

.insight-card p {
    color: #e0e7ff;
    font-size: 1.05rem;
}

.trust-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

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

.trust-container h2 {
    text-align: center;
    font-size: 2rem;
    color: #1f2937;
    margin-bottom: 3rem;
}

.testimonials {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-item {
    background-color: #f9fafb;
    padding: 2rem;
    border-radius: 12px;
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    border-left: 4px solid #1e40af;
}

.testimonial-content p {
    font-style: italic;
    color: #374151;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: #1f2937;
}

.author-location {
    color: #6b7280;
    font-size: 0.9rem;
}

.benefits-section {
    padding: 6rem 2rem;
}

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

.benefits-wrapper h2 {
    text-align: center;
    font-size: 2rem;
    color: #1f2937;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.benefit-item {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    text-align: center;
    padding: 1.5rem;
}

.benefit-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.benefit-item h3 {
    font-size: 1.2rem;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.benefit-item p {
    color: #6b7280;
    font-size: 0.95rem;
}

.services-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.services-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.services-wrapper h2 {
    text-align: center;
    font-size: 2rem;
    color: #1f2937;
    margin-bottom: 1rem;
}

.services-intro {
    text-align: center;
    color: #6b7280;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 320px;
    max-width: 420px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.service-image {
    height: 200px;
    overflow: hidden;
}

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

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    font-size: 1.25rem;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.service-content p {
    color: #6b7280;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #059669;
    margin-bottom: 1rem;
}

.service-select-btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background-color: #1e40af;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

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

.cta-mid-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    text-align: center;
}

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

.cta-mid-container h2 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-mid-container p {
    color: #d1fae5;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.form-section {
    padding: 6rem 2rem;
    background-color: #f3f4f6;
}

.form-wrapper {
    display: flex;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: flex-start;
}

.form-info {
    flex: 1;
}

.form-info h2 {
    font-size: 2rem;
    color: #1f2937;
    margin-bottom: 1rem;
}

.form-info p {
    color: #4b5563;
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #374151;
}

.form-benefits li::before {
    content: "✓";
    color: #059669;
    font-weight: bold;
}

.contact-form {
    flex: 1;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e40af;
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-button {
    width: 100%;
    padding: 1rem 2rem;
    background-color: #1e40af;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.submit-button:hover {
    background-color: #1e3a8a;
}

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #f9fafb;
    border-top: 1px solid #e5e7eb;
}

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

.disclaimer-container p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.7;
}

.site-footer {
    background-color: #1f2937;
    color: #ffffff;
    padding: 4rem 2rem 1rem;
}

.footer-container {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.footer-brand {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.footer-brand p {
    color: #9ca3af;
    margin-top: 0.5rem;
}

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

.footer-links h4,
.footer-contact h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: #9ca3af;
    transition: color 0.2s ease;
}

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

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

.footer-contact p {
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.email-text {
    word-break: break-word;
}

.footer-bottom {
    border-top: 1px solid #374151;
    margin-top: 3rem;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: #6b7280;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    padding: 1.5rem 2rem;
    z-index: 1000;
    display: none;
}

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

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

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

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.cookie-accept {
    background-color: #059669;
    color: #ffffff;
}

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

.cookie-reject {
    background-color: #374151;
    color: #ffffff;
}

.cookie-reject:hover {
    background-color: #4b5563;
}

.page-header {
    background-color: #1e3a8a;
    padding: 4rem 2rem;
    text-align: center;
}

.page-header h1 {
    color: #ffffff;
    font-size: 2.5rem;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.page-content h2 {
    font-size: 1.5rem;
    color: #1f2937;
    margin: 2rem 0 1rem;
}

.page-content h2:first-child {
    margin-top: 0;
}

.page-content p {
    color: #4b5563;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.page-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.page-content li {
    color: #4b5563;
    margin-bottom: 0.5rem;
    list-style: disc;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background-color: #f3f4f6;
}

.thanks-container {
    text-align: center;
    max-width: 600px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-container h1 {
    font-size: 2rem;
    color: #1f2937;
    margin-bottom: 1rem;
}

.thanks-container p {
    color: #4b5563;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.thanks-service {
    background-color: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #059669;
}

.thanks-service strong {
    color: #1f2937;
}

.contact-info-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.contact-info-container {
    max-width: 900px;
    margin: 0 auto;
}

.contact-details {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-block {
    flex: 1;
    min-width: 250px;
}

.contact-block h3 {
    font-size: 1.25rem;
    color: #1f2937;
    margin-bottom: 1rem;
}

.contact-block p {
    color: #4b5563;
    margin-bottom: 0.5rem;
}

.services-page-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.service-page-item {
    display: flex;
    gap: 2rem;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service-page-image {
    width: 300px;
    flex-shrink: 0;
}

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

.service-page-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-page-content h3 {
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.service-page-content p {
    color: #4b5563;
    margin-bottom: 1rem;
}

.service-page-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #059669;
}

.about-hero {
    display: flex;
    gap: 4rem;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.about-hero-content {
    flex: 1;
}

.about-hero-content h2 {
    font-size: 2rem;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.about-hero-content p {
    color: #4b5563;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.about-hero-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
}

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

.about-values {
    background-color: #f3f4f6;
    padding: 4rem 2rem;
}

.about-values-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.about-values h2 {
    font-size: 2rem;
    color: #1f2937;
    margin-bottom: 3rem;
}

.values-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 250px;
    max-width: 320px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
}

.value-item h3 {
    font-size: 1.25rem;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.value-item p {
    color: #6b7280;
}

@media (max-width: 900px) {
    .header-container {
        padding: 1rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-list {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        padding: 1rem 2rem;
        gap: 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        display: none;
    }

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

    .nav-list li {
        border-bottom: 1px solid #e5e7eb;
    }

    .nav-list a {
        display: block;
        padding: 1rem 0;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .intro-container,
    .problem-container,
    .form-wrapper,
    .about-hero {
        flex-direction: column;
    }

    .intro-image,
    .problem-visual,
    .about-hero-image {
        order: -1;
    }

    .service-page-item {
        flex-direction: column;
    }

    .service-page-image {
        width: 100%;
        height: 200px;
    }

    .footer-container {
        flex-direction: column;
        gap: 2rem;
    }

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

@media (max-width: 600px) {
    .insight-cards {
        flex-direction: column;
        align-items: center;
    }

    .testimonials {
        flex-direction: column;
    }

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

    .service-card {
        min-width: 100%;
    }
}
