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

:root {
    --primary-color: #2c5f7c;
    --secondary-color: #e8943e;
    --dark-color: #1a1a1a;
    --light-color: #f9f9f9;
    --text-color: #333;
    --border-color: #ddd;
    --accent-color: #c77d2f;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background: #fff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    padding: 1.5rem;
    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: 1rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: var(--secondary-color);
    color: #fff;
}

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

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

.btn-reject:hover {
    background: #fff;
    color: #000;
}

.nav-main {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

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

.nav-links a {
    font-weight: 500;
    color: var(--text-color);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    transition: all 0.3s ease;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: none;
}

.sticky-cta.show {
    display: block;
}

.btn-sticky {
    background: var(--secondary-color);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(232, 148, 62, 0.4);
    display: inline-block;
}

.btn-sticky:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 148, 62, 0.5);
}

.hero-visual {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 95, 124, 0.7), rgba(0, 0, 0, 0.4));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.btn-hero {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--secondary-color);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.section-hook {
    padding: 6rem 2rem;
    background: var(--light-color);
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.3rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: #444;
}

.intro-text:last-child {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.section-story {
    padding: 5rem 2rem;
}

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

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    line-height: 1.3;
}

.split-content p {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

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

.section-title {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--dark-color);
}

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

.problem-card {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: var(--light-color);
    border-left: 4px solid var(--secondary-color);
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.problem-card p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.section-insight {
    padding: 6rem 2rem;
    background: var(--primary-color);
    color: #fff;
}

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

.insight-content h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

.insight-content p {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.section-visual-break {
    position: relative;
    height: 500px;
}

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

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    font-size: 2rem;
    font-style: italic;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    max-width: 700px;
    padding: 2rem;
}

.section-how {
    padding: 6rem 2rem;
    background: var(--light-color);
}

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

.section-title-center {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--dark-color);
}

.steps-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--secondary-color);
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.step p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.step-arrow {
    font-size: 3rem;
    color: var(--secondary-color);
    font-weight: 300;
}

.section-trust {
    padding: 6rem 2rem;
    background: #fff;
}

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

.testimonial {
    padding: 2.5rem;
    background: var(--light-color);
    border-left: 5px solid var(--secondary-color);
    position: relative;
}

.quote {
    font-size: 1.2rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1rem;
    color: #333;
}

.author {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1rem;
}

.section-experiences {
    padding: 6rem 2rem;
    background: var(--light-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 4rem;
    color: #666;
}

.experiences-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 3rem;
}

.experience-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.exp-image {
    height: 250px;
    overflow: hidden;
}

.exp-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.experience-card:hover .exp-image img {
    transform: scale(1.1);
}

.exp-content {
    padding: 2rem;
}

.exp-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.exp-content p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    color: #555;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.btn-select {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background: var(--secondary-color);
}

.section-why-now {
    padding: 6rem 2rem;
    background: #fff;
}

.section-why-now h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.section-why-now p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.highlight-text {
    background: #fff3e0;
    padding: 1.5rem;
    border-left: 4px solid var(--secondary-color);
    font-weight: 600;
    color: var(--dark-color);
    margin: 2rem 0;
}

.btn-cta {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--secondary-color);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.section-guarantee {
    padding: 6rem 2rem;
    background: var(--light-color);
}

.guarantee-items {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.guarantee-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.guarantee-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.guarantee-item p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.section-booking {
    padding: 6rem 2rem;
    background: #fff;
}

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

.booking-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: var(--dark-color);
}

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

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

.form-privacy {
    margin: 2rem 0;
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
}

.form-privacy input[type="checkbox"] {
    margin-top: 0.3rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-privacy label {
    font-size: 0.95rem;
    line-height: 1.6;
}

.form-privacy a {
    color: var(--primary-color);
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: var(--secondary-color);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.section-final-cta {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), #1a4a62);
    color: #fff;
    text-align: center;
}

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

.section-final-cta h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-final-cta p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
}

.btn-large {
    display: inline-block;
    padding: 1.5rem 4rem;
    background: var(--secondary-color);
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-large:hover {
    background: #fff;
    color: var(--primary-color);
    transform: scale(1.05);
}

.footer {
    background: var(--dark-color);
    color: #fff;
    padding: 4rem 2rem 2rem;
}

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

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

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    color: var(--secondary-color);
}

.footer-col p {
    line-height: 1.8;
    opacity: 0.9;
}

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

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col ul li a {
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        flex-direction: column;
        background: #fff;
        width: 250px;
        height: calc(100vh - 70px);
        padding: 2rem;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

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

    .steps-flow {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

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

    .experience-card {
        min-width: 100%;
    }

    .problem-grid,
    .guarantee-items {
        flex-direction: column;
    }

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

    .section-final-cta h2 {
        font-size: 2rem;
    }

    .section-final-cta p {
        font-size: 1.2rem;
    }
}