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

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

.container-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-wide {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.ad-disclosure {
    background-color: #f8f9fa;
    padding: 8px 24px;
    text-align: center;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 48px;
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

.nav-links {
    display: flex;
    gap: 32px;
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s;
}

.hero-section {
    display: flex;
    min-height: 600px;
    background-color: #f5f7fa;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-content p {
    font-size: 20px;
    color: #555;
    margin-bottom: 36px;
    max-width: 520px;
}

.cta-button {
    display: inline-block;
    padding: 16px 36px;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.cta-button:hover {
    background-color: #2980b9;
}

.hero-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-color: #e0e0e0;
}

.story-section {
    padding: 80px 0;
    background-color: #fff;
}

.story-card {
    background-color: #f9fafb;
    padding: 56px;
    border-radius: 12px;
}

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

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

.insight-section {
    padding: 80px 0;
    background-color: #fafbfc;
}

.insight-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.insight-card {
    display: flex;
    gap: 40px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.insight-card:nth-child(even) {
    flex-direction: row-reverse;
}

.insight-image {
    flex: 0 0 420px;
    background-size: cover;
    background-position: center;
    background-color: #e0e0e0;
}

.insight-content {
    flex: 1;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.insight-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.insight-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #666;
}

.insight-content a {
    color: #3498db;
    text-decoration: none;
}

.insight-content a:hover {
    text-decoration: underline;
}

.benefits-section {
    padding: 80px 0;
    background-color: #fff;
}

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

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

.benefit-item {
    flex: 1 1 calc(50% - 20px);
    display: flex;
    gap: 20px;
}

.benefit-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: #3498db;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
}

.benefit-item h4 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.benefit-item p {
    font-size: 16px;
    color: #666;
}

.testimonials-section {
    padding: 80px 0;
    background-color: #f5f7fa;
}

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

.testimonials-cards {
    display: flex;
    gap: 32px;
}

.testimonial-card {
    flex: 1;
    background-color: #fff;
    padding: 36px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

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

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

.selection-section {
    padding: 80px 0;
    background-color: #fff;
}

.selection-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 16px;
    color: #2c3e50;
}

.selection-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 56px;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 22px);
    min-width: 280px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

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

.service-image {
    height: 240px;
    background-size: cover;
    background-position: center;
    background-color: #e0e0e0;
}

.service-info {
    padding: 28px;
}

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

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

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #3498db;
    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;
}

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

.form-section {
    padding: 80px 0;
    background-color: #f5f7fa;
}

.form-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 16px;
    color: #2c3e50;
}

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

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

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
}

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

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

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

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

.disclaimer-text {
    font-size: 14px;
    line-height: 1.7;
    color: #777;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.references-section {
    padding: 60px 0;
    background-color: #fff;
}

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

.references-list p {
    font-size: 15px;
    margin-bottom: 12px;
    color: #555;
}

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

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

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 48px 0 24px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 32px;
}

.footer-column {
    flex: 1;
}

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

.footer-column p {
    font-size: 15px;
    color: #bdc3c7;
}

.footer-column a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #3498db;
}

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

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

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

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

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

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

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

.cookie-btn.reject {
    background-color: #95a5a6;
    color: #fff;
}

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

.service-card.selected {
    border: 3px solid #3498db;
}

img {
    object-fit: cover;
}

@media (max-width: 1024px) {
    .insight-card {
        flex-direction: column !important;
    }

    .insight-image {
        flex: 0 0 300px;
    }

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

    .service-card {
        flex: 1 1 calc(50% - 16px);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-section {
        flex-direction: column;
    }

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

    .hero-image {
        min-height: 320px;
    }

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

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

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

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

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