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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e67e22;
    --accent-color: #16a085;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #ecf0f1;
    --bg-white: #ffffff;
    --bg-dark: #34495e;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.98);
    color: white;
    padding: 20px;
    z-index: 10000;
    display: none;
}

.cookie-banner.active {
    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;
    min-width: 300px;
}

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

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

.btn-accept {
    background-color: var(--accent-color);
    color: white;
}

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

.btn-reject {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

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

.header-main {
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.ad-disclosure {
    background-color: #f39c12;
    color: white;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    font-weight: 500;
}

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

.logo {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--secondary-color);
}

.hero-story {
    position: relative;
    height: 85vh;
    min-height: 600px;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #34495e;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.hero-overlay h1 {
    color: white;
    font-size: 56px;
    font-weight: 700;
    max-width: 900px;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-overlay p {
    color: white;
    font-size: 22px;
    max-width: 700px;
}

.story-intro {
    padding: 100px 40px;
    background-color: var(--bg-white);
}

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

.lead-text {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.5;
}

.narrow-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.insight-reveal {
    padding: 80px 40px;
    background-color: var(--bg-light);
}

.split-layout {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.text-block {
    flex: 1;
}

.text-block h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.text-block p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.image-block {
    flex: 1;
    background-color: #95a5a6;
}

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

.problem-section {
    padding: 100px 40px;
    background-color: var(--bg-white);
}

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

.centered-content h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.centered-content > p {
    font-size: 20px;
    margin-bottom: 60px;
    color: var(--text-light);
}

.problem-cards {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    justify-content: center;
    flex-wrap: wrap;
}

.card-item {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: var(--bg-light);
    padding: 40px 30px;
    border-radius: 8px;
}

.card-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.card-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.solution-intro {
    padding: 90px 40px;
    background-color: var(--primary-color);
    color: white;
}

.solution-intro h2 {
    font-size: 40px;
    margin-bottom: 25px;
    color: white;
}

.solution-intro p {
    font-size: 19px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.trust-builder {
    padding: 90px 40px;
    background-color: var(--bg-light);
}

.testimonial-flow {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.testimonial-card {
    background-color: white;
    padding: 45px;
    border-left: 5px solid var(--accent-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.quote {
    font-size: 20px;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.6;
}

.author {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 600;
}

.benefits-reveal {
    padding: 90px 40px;
    background-color: var(--bg-white);
}

.benefit-blocks {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.benefit-item {
    flex: 1;
    min-width: 320px;
    background-color: #ecf0f1;
}

.benefit-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.benefit-item h3 {
    font-size: 24px;
    margin: 25px 25px 15px;
    color: var(--primary-color);
}

.benefit-item p {
    font-size: 17px;
    margin: 0 25px 25px;
    color: var(--text-dark);
    line-height: 1.6;
}

.services-section {
    padding: 100px 40px;
    background-color: var(--bg-light);
}

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

.services-container h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.section-intro {
    text-align: center;
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 60px;
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 340px;
    max-width: 420px;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    background-color: #bdc3c7;
}

.service-card h3 {
    font-size: 22px;
    margin: 25px 25px 15px;
    color: var(--primary-color);
}

.service-card p {
    font-size: 16px;
    margin: 0 25px 15px;
    color: var(--text-dark);
    line-height: 1.6;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 20px 25px;
}

.btn-select {
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 15px;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select:hover {
    background-color: #138f75;
}

.form-section {
    padding: 90px 40px;
    background-color: var(--bg-white);
}

.form-container {
    max-width: 650px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 38px;
    margin-bottom: 20px;
    text-align: center;
    color: var(--primary-color);
}

.selected-info {
    text-align: center;
    font-size: 18px;
    color: var(--accent-color);
    margin-bottom: 40px;
    font-weight: 600;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.final-cta {
    padding: 100px 40px;
    background-color: var(--bg-dark);
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    color: white;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
}

.btn-cta-large {
    display: inline-block;
    padding: 18px 50px;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    background-color: #d35400;
    transform: translateY(-2px);
}

.footer-main {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 40px 30px;
}

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

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 25px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

.footer-disclaimer p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.thanks-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.thanks-container h1 {
    font-size: 48px;
    color: var(--accent-color);
    margin-bottom: 25px;
}

.thanks-container p {
    font-size: 19px;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.7;
}

.contact-page {
    padding: 80px 40px;
    background-color: var(--bg-white);
}

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

.contact-container h1 {
    font-size: 44px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
}

.contact-info {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.info-block {
    flex: 1;
    min-width: 300px;
}

.info-block h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.info-block p {
    font-size: 17px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.about-page {
    padding: 80px 40px;
    background-color: var(--bg-white);
}

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

.about-container h1 {
    font-size: 48px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.about-container h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.legal-page {
    padding: 80px 40px;
    background-color: var(--bg-white);
}

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.legal-container p {
    font-size: 16px;
    margin-bottom: 18px;
    line-height: 1.7;
}

.legal-container ul {
    margin-bottom: 20px;
    margin-left: 30px;
}

.legal-container li {
    margin-bottom: 10px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 36px;
    }

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

    .split-layout {
        flex-direction: column;
    }

    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }

    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

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

    .benefit-blocks {
        flex-direction: column;
    }

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