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

:root {
    --primary-color: #d4526e;
    --secondary-color: #f8e9d2;
    --dark-color: #2c1810;
    --light-color: #fff8f0;
    --text-color: #3d2817;
    --accent-color: #ff8fab;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    background-color: var(--light-color);
}

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

a {
    text-decoration: none;
    color: inherit;
}

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.nav-menu.active {
    display: flex;
}

.nav-menu a {
    padding: 0.75rem 1rem;
    color: var(--text-color);
    transition: color 0.3s;
}

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

.nav-toggle {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

.hero-visual {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-bg-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(212, 82, 110, 0.7), rgba(44, 24, 16, 0.6));
}

.hero-content-float {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 800px;
}

.hero-title-large {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-hero {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.story-intro {
    padding: var(--spacing-xl) var(--spacing-md);
    background: white;
}

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

.story-narrow h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.story-narrow p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.visual-moment {
    padding: 0;
}

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

.problem-reveal {
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--secondary-color);
}

.content-offset {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.text-block-left {
    flex: 1;
}

.text-block-left h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.text-block-left p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.image-block-right {
    flex: 1;
}

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

.trust-signal {
    padding: var(--spacing-xl) var(--spacing-md);
    background: white;
}

.testimonial-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-card p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.testimonial-author {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.visual-break {
    padding: 0;
}

.banner-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.insight-section {
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--dark-color);
    color: white;
}

.insight-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.insight-box h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.insight-box p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.cta-inline {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 0.9rem 2.5rem;
    font-weight: bold;
    border-radius: 50px;
    margin-top: 1rem;
    transition: transform 0.3s;
}

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

.benefit-reveal {
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--light-color);
}

.benefit-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.benefit-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.benefit-item p {
    font-size: 1.05rem;
    color: var(--text-color);
}

.urgency-trigger {
    padding: var(--spacing-lg) var(--spacing-md);
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.urgency-box h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.urgency-box p {
    font-size: 1.2rem;
}

.services-pricing {
    padding: var(--spacing-xl) var(--spacing-md);
    background: white;
}

.section-header-centered {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.section-header-centered p {
    font-size: 1.2rem;
    color: var(--text-color);
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--light-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 0.5rem;
    color: var(--dark-color);
}

.service-card p {
    font-size: 1rem;
    margin: 0 1.5rem 1rem;
    color: var(--text-color);
}

.service-card .price {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 1rem 1.5rem;
}

.btn-select-service {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

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

.order-form-section {
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--secondary-color);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    text-align: center;
}

.form-intro {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    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: var(--primary-color);
}

.btn-submit-order {
    padding: 1.2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    margin-top: 1rem;
}

.btn-submit-order:hover {
    background: var(--dark-color);
    transform: scale(1.02);
}

.final-cta {
    padding: var(--spacing-xl) var(--spacing-md);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.final-cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-large {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.footer {
    background: var(--dark-color);
    color: white;
    padding: 3rem 2rem 1rem;
}

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

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-section p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.footer-section a {
    display: block;
    margin-bottom: 0.5rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 1;
}

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

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-cta-btn {
    display: block;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.sticky-cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 1.5rem;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    font-size: 0.95rem;
    color: var(--text-color);
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s;
}

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

.btn-reject {
    background: #e0e0e0;
    color: var(--text-color);
}

.btn-accept:hover,
.btn-reject:hover {
    transform: scale(1.05);
}

.thanks-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--secondary-color), var(--light-color));
}

.thanks-box {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    max-width: 600px;
}

.thanks-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.thanks-box h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.thanks-box p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.thanks-details {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    text-align: left;
}

.thanks-details p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.thanks-details strong {
    color: var(--dark-color);
}

.btn-back-home {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: bold;
    transition: transform 0.3s;
    margin-top: 1rem;
}

.btn-back-home:hover {
    transform: scale(1.05);
}

.page-header {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.95;
}

.page-content {
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.page-content h2 {
    font-size: 2rem;
    margin: 2rem 0 1rem;
    color: var(--dark-color);
}

.page-content h3 {
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
    color: var(--text-color);
}

.page-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.page-content ul,
.page-content ol {
    margin: 1rem 0 1rem 2rem;
    font-size: 1.1rem;
}

.page-content li {
    margin-bottom: 0.5rem;
}

.contact-info {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.contact-info h3 {
    margin-top: 0;
}

.contact-info p {
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
        flex-direction: row;
        position: static;
        background: transparent;
        padding: 0;
        box-shadow: none;
        gap: 2rem;
    }

    .nav-toggle {
        display: none;
    }

    .hero-title-large {
        font-size: 4rem;
    }

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

    .content-offset {
        flex-direction: row;
        align-items: center;
    }

    .testimonial-grid {
        flex-direction: row;
    }

    .benefit-layout {
        flex-direction: row;
    }

    .service-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-section {
        flex: 1;
    }
}

@media (min-width: 1024px) {
    .service-card {
        flex: 1 1 calc(33.333% - 1.5rem);
    }

    .full-width-image {
        height: 600px;
    }

    .banner-image {
        height: 500px;
    }
}
