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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    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;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #27ae60;
    color: #fff;
}

.btn-accept:hover {
    background-color: #229954;
}

.btn-reject {
    background-color: #7f8c8d;
    color: #fff;
}

.btn-reject:hover {
    background-color: #6c7a7b;
}

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

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    padding: 4px 12px;
    background-color: #ecf0f1;
    border-radius: 4px;
}

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

.nav-menu a {
    text-decoration: none;
    color: #34495e;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #3498db;
}

.hero-card {
    margin: 40px 20px;
}

.hero-image {
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay {
    background-color: rgba(0,0,0,0.5);
    padding: 60px;
    border-radius: 16px;
    text-align: center;
    max-width: 800px;
}

.hero-overlay h1 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 20px;
    color: #ecf0f1;
}

.intro-cards {
    padding: 60px 0;
}

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

.card-intro h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 24px;
}

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

.problem-section {
    padding: 60px 0;
    background-color: #ecf0f1;
}

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

.card-problem {
    flex: 1;
    min-width: 280px;
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.card-problem h3 {
    font-size: 22px;
    color: #e74c3c;
    margin-bottom: 16px;
}

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

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

.insight-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 50px;
    border-radius: 12px;
    color: #fff;
}

.insight-card h2 {
    font-size: 32px;
    margin-bottom: 24px;
}

.insight-card p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.citation {
    color: #f1c40f;
    text-decoration: none;
    font-weight: 600;
}

.citation:hover {
    text-decoration: underline;
}

.trust-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.trust-section h2 {
    text-align: center;
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 50px;
}

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

.feature-card {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.feature-card img {
    width: 100%;
    height: 240px;
    display: block;
}

.feature-card h3 {
    padding: 20px 24px 10px;
    font-size: 22px;
    color: #2c3e50;
}

.feature-card p {
    padding: 0 24px 24px;
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

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

.testimonials-section h2 {
    text-align: center;
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 40px;
}

.testimonial-cards {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #3498db;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

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

.testimonial-author {
    font-size: 14px;
    color: #7f8c8d;
    font-weight: 600;
}

.benefits-section {
    padding: 60px 0;
    background-color: #ecf0f1;
}

.benefits-section h2 {
    text-align: center;
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 50px;
}

.benefits-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.benefit-card {
    flex: 1;
    min-width: 260px;
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.benefit-card h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.services-preview {
    padding: 60px 0;
}

.services-preview h2 {
    text-align: center;
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.services-intro {
    text-align: center;
    font-size: 18px;
    color: #555;
    margin-bottom: 50px;
}

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

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-card img {
    width: 100%;
    height: 220px;
    display: block;
}

.service-content {
    padding: 24px;
}

.service-content h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 12px;
}

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

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

.select-service-btn {
    width: 100%;
    padding: 14px;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service-btn:hover {
    background-color: #2980b9;
}

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

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

.form-card h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 12px;
    text-align: center;
}

.form-card > p {
    text-align: center;
    color: #555;
    margin-bottom: 30px;
}

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

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

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

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

.submit-btn {
    width: 100%;
    padding: 14px;
    background-color: #27ae60;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

.disclaimer-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
}

.disclaimer-card h3 {
    font-size: 24px;
    color: #856404;
    margin-bottom: 16px;
}

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

.references-section {
    padding: 40px 0;
}

.references-section h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.references-list {
    list-style-position: inside;
    padding-left: 0;
}

.references-list li {
    margin-bottom: 12px;
}

.references-list a {
    color: #3498db;
    text-decoration: none;
}

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

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 50px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #fff;
}

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

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

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

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    margin-top: 30px;
    border-top: 1px solid #34495e;
}

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

.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 20px;
    text-align: center;
    color: #fff;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 20px;
    color: #ecf0f1;
}

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

.content-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.content-card h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.content-card h3 {
    font-size: 22px;
    color: #34495e;
    margin-top: 30px;
    margin-bottom: 16px;
}

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

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

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

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

.service-item {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.service-item h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 12px;
}

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

.service-item .price {
    font-size: 28px;
    color: #27ae60;
    font-weight: 700;
}

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

.contact-info h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 12px;
}

.contact-info strong {
    color: #2c3e50;
}

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

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

.thanks-icon {
    font-size: 72px;
    margin-bottom: 24px;
}

.thanks-card h1 {
    font-size: 36px;
    color: #27ae60;
    margin-bottom: 16px;
}

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

.thanks-card .selected-service {
    background-color: #ecf0f1;
    padding: 20px;
    border-radius: 8px;
    margin: 24px 0;
}

.thanks-card .selected-service strong {
    color: #2c3e50;
    font-size: 20px;
}

.back-home-btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 24px;
    transition: background-color 0.3s ease;
}

.back-home-btn:hover {
    background-color: #2980b9;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

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

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

    .card-grid,
    .card-grid-features,
    .service-cards,
    .benefits-grid {
        flex-direction: column;
    }

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