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

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

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

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

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

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

.hero-section {
    display: flex;
    flex-direction: column;
    background-color: #f8f9fa;
}

.hero-content {
    padding: 5rem 2rem 3rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.hero-image {
    width: 100%;
    height: 500px;
    background-color: #e9ecef;
}

.hero-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.story-intro {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.content-narrow {
    max-width: 700px;
    margin: 0 auto;
}

.content-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.story-intro h2,
.problem-section h2,
.insight-section h2,
.services-preview h2,
.testimonials-section h2,
.benefits-reveal h2,
.trust-section h2,
.cta-form-section h2,
.final-cta h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.story-intro p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    color: #4a5568;
}

.problem-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

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

.split-content {
    flex: 1;
}

.split-content p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    color: #4a5568;
}

.split-image {
    flex: 1;
    background-color: #e9ecef;
}

.split-image img {
    width: 100%;
    height: 400px;
    display: block;
}

.insight-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.insight-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.insight-card {
    padding: 2rem;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
}

.insight-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #1a252f;
}

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

.services-preview {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.section-intro {
    text-align: center;
    font-size: 1.15rem;
    color: #5a6c7d;
    margin-bottom: 3rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

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

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

.service-image {
    width: 100%;
    height: 220px;
    background-color: #e9ecef;
}

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

.service-card h3 {
    padding: 1.5rem 1.5rem 0.8rem;
    font-size: 1.3rem;
    color: #1a252f;
}

.service-card p {
    padding: 0 1.5rem;
    font-size: 1rem;
    color: #5a6c7d;
    margin-bottom: 1rem;
}

.price {
    padding: 0 1.5rem 1rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #3498db;
}

.select-btn {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 0.9rem;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

.testimonials-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.testimonials {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 3rem;
}

.testimonial {
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    font-style: italic;
}

.testimonial p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    font-style: normal;
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
}

.benefits-reveal {
    padding: 5rem 0;
    background-color: #1a252f;
    color: #ffffff;
}

.benefits-reveal h2 {
    text-align: center;
    color: #ffffff;
    margin-bottom: 3rem;
}

.benefits-timeline {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.benefit-item {
    padding: 2rem 2rem 2rem 6rem;
    position: relative;
}

.benefit-number {
    position: absolute;
    left: 2rem;
    top: 2rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #3498db;
    letter-spacing: 1px;
}

.benefit-item h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: #ffffff;
}

.benefit-item p {
    font-size: 1.05rem;
    color: #cbd5e0;
    line-height: 1.7;
}

.trust-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.trust-elements {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.trust-item {
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.trust-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    color: #1a252f;
}

.trust-item p {
    font-size: 1.05rem;
    color: #5a6c7d;
}

.cta-form-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 3rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.submit-btn {
    width: 100%;
    padding: 1.1rem;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.final-cta {
    padding: 4rem 2rem;
    background-color: #3498db;
    color: #ffffff;
    text-align: center;
}

.final-cta h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.cta-button-alt {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    background-color: #ffffff;
    color: #3498db;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: transform 0.3s;
}

.cta-button-alt:hover {
    transform: scale(1.05);
}

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #f8f9fa;
}

.disclaimer {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.6;
    text-align: center;
}

.main-footer {
    background-color: #1a252f;
    color: #cbd5e0;
    padding: 3rem 2rem 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

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

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-column p,
.footer-column a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.8;
}

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

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

.cookie-accept,
.cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

.cookie-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cookie-reject:hover {
    background-color: rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }

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

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

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

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

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}