* {
    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;
}

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

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

.ad-disclosure {
    font-size: 11px;
    color: #718096;
    background-color: #f7fafc;
    padding: 4px 12px;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
}

.nav {
    display: flex;
    gap: 25px;
}

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

.nav a:hover {
    color: #2d3748;
}

.hero-card {
    display: flex;
    flex-direction: column;
    margin: 40px 0;
}

.hero-card-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 12px;
}

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

.hero-card-content {
    padding: 40px 20px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

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

.hero-card-content p {
    font-size: 20px;
    color: #4a5568;
    line-height: 1.7;
}

.intro-section {
    padding: 60px 0;
    background-color: #f7fafc;
}

.intro-card {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

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

.intro-card p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.8;
}

.problem-section {
    padding: 60px 0;
}

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

.card-grid-2 > * {
    flex: 1;
    min-width: 300px;
}

.problem-card {
    padding: 40px;
    border-radius: 12px;
}

.problem-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a202c;
}

.problem-card p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #4a5568;
    line-height: 1.7;
}

.problem-image {
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}

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

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

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

.card-grid-3 {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.card-grid-3 > * {
    flex: 1;
    min-width: 280px;
}

.insight-card {
    background-color: #2d3748;
    padding: 35px;
    border-radius: 12px;
    transition: transform 0.3s;
}

.insight-card:hover {
    transform: translateY(-5px);
}

.insight-number {
    font-size: 48px;
    font-weight: 700;
    color: #4299e1;
    margin-bottom: 15px;
}

.insight-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #ffffff;
}

.insight-card p {
    font-size: 16px;
    color: #cbd5e0;
    line-height: 1.7;
}

.trust-section {
    padding: 60px 0;
}

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

.testimonial-card {
    background-color: #f7fafc;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #4299e1;
}

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

.testimonial-author {
    font-size: 15px;
    color: #718096;
    font-weight: 600;
}

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

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

.service-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

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

.service-content {
    padding: 30px;
}

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

.service-content p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 15px;
    line-height: 1.6;
}

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

.cta-btn {
    background-color: #4299e1;
    color: #ffffff;
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.cta-btn:hover {
    background-color: #3182ce;
}

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

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

.form-card h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a202c;
    text-align: center;
}

.form-card > p {
    text-align: center;
    color: #718096;
    margin-bottom: 30px;
    font-size: 16px;
}

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

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

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

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

.form-group input[readonly] {
    background-color: #edf2f7;
    cursor: not-allowed;
}

.submit-btn {
    background-color: #2d3748;
    color: #ffffff;
    padding: 15px 40px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #1a202c;
}

.disclaimer-section {
    padding: 40px 0;
    background-color: #f7fafc;
}

.disclaimer-card {
    background-color: #fff5f5;
    border-left: 4px solid #fc8181;
    padding: 30px;
    border-radius: 8px;
}

.disclaimer-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #c53030;
}

.disclaimer-card p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.7;
}

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

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

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

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

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

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

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

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

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

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

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

.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.15);
    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: 250px;
    font-size: 15px;
    line-height: 1.5;
}

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.cookie-btn:hover {
    opacity: 0.9;
}

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

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

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

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

.thanks-card h1 {
    font-size: 36px;
    color: #2d3748;
    margin-bottom: 20px;
}

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

.thanks-card .highlight {
    background-color: #e6fffa;
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
}

.thanks-card .highlight strong {
    color: #2d3748;
}

.thanks-card .btn-home {
    display: inline-block;
    background-color: #4299e1;
    color: #ffffff;
    padding: 14px 35px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 25px;
    transition: background-color 0.3s;
}

.thanks-card .btn-home:hover {
    background-color: #3182ce;
}

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

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

.about-hero p {
    font-size: 20px;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.about-content {
    padding: 60px 0;
}

.about-card {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

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

.about-card p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 15px;
}

.services-list {
    padding: 60px 0;
    background-color: #f7fafc;
}

.services-list h1 {
    font-size: 42px;
    text-align: center;
    color: #1a202c;
    margin-bottom: 50px;
}

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

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

.contact-hero p {
    font-size: 20px;
    color: #4a5568;
}

.contact-content {
    padding: 60px 0;
}

.contact-info-card {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    max-width: 700px;
    margin: 0 auto;
}

.contact-info-card h2 {
    font-size: 28px;
    color: #1a202c;
    margin-bottom: 30px;
}

.contact-info-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e2e8f0;
}

.contact-info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-info-item h3 {
    font-size: 18px;
    color: #2d3748;
    margin-bottom: 10px;
    font-weight: 600;
}

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

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

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

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

.legal-content h2 {
    font-size: 28px;
    color: #2d3748;
    margin-top: 40px;
    margin-bottom: 20px;
}

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

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

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

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

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

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }

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

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

    .card-grid-2,
    .card-grid-3 {
        flex-direction: column;
    }

    .intro-card,
    .form-card,
    .about-card,
    .contact-info-card,
    .legal-content {
        padding: 30px 20px;
    }

    .about-hero h1,
    .contact-hero h1 {
        font-size: 36px;
    }

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

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

    .cookie-btn {
        width: 100%;
    }
}