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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #2d2d2d;
    --accent-color: #8b7355;
    --text-color: #333;
    --light-text: #666;
    --bg-light: #f8f8f8;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-serif: Georgia, 'Times New Roman', serif;
}

body {
    font-family: var(--font-primary);
    line-height: 1.7;
    color: var(--text-color);
    overflow-x: hidden;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

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

.cookie-content a {
    color: var(--accent-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: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background: #9d8566;
}

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

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

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

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

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

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

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

.hero-immersive {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
}

.hero-immersive img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--bg-white);
    max-width: 900px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 300;
    letter-spacing: 1px;
}

.story-intro {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

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

.lead-text {
    font-size: 1.5rem;
    font-family: var(--font-serif);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.story-intro p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--light-text);
}

.problem-amplification {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

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

.problem-text {
    flex: 1;
    min-width: 300px;
}

.problem-text h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.problem-text p {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    color: var(--light-text);
}

.emphasis-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 2rem;
}

.problem-visual {
    flex: 1;
    min-width: 300px;
}

.problem-visual img {
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.inline-cta-block {
    padding: 3rem 2rem;
    background: var(--accent-color);
    text-align: center;
    color: var(--bg-white);
}

.inline-cta-block p {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.cta-link {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--bg-white);
    color: var(--accent-color);
    font-weight: 600;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.cta-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.insight-reveal {
    padding: 6rem 2rem;
    background: var(--bg-white);
}

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

.insight-image {
    flex: 1;
    min-width: 300px;
}

.insight-image img {
    border-radius: 4px;
}

.insight-content {
    flex: 1;
    min-width: 300px;
}

.insight-content h2 {
    font-size: 2.2rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.insight-content p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: var(--light-text);
    line-height: 1.8;
}

.trust-building {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.trust-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.trust-item {
    flex: 1;
    min-width: 280px;
    text-align: center;
    padding: 2rem;
}

.trust-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

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

.trust-item p {
    color: var(--light-text);
    line-height: 1.7;
}

.testimonials-inline {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.testimonial {
    padding: 2.5rem;
    margin-bottom: 2rem;
    background: var(--bg-light);
    border-left: 4px solid var(--accent-color);
}

.testimonial p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-color);
    line-height: 1.8;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: var(--accent-color);
}

.benefits-cascade {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.cascade-layout {
    max-width: 1100px;
    margin: 0 auto;
}

.benefit-block {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.benefit-block img {
    flex: 1;
    min-width: 300px;
    border-radius: 4px;
}

.benefit-text {
    flex: 1;
    min-width: 300px;
}

.benefit-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.benefit-text p {
    font-size: 1.05rem;
    color: var(--light-text);
    line-height: 1.8;
}

.benefit-right {
    flex-direction: row-reverse;
}

.urgency-soft {
    padding: 3rem 2rem;
    background: var(--secondary-color);
    text-align: center;
}

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

.urgency-text {
    font-size: 1.3rem;
    color: var(--bg-white);
    font-style: italic;
}

.pricing-reveal {
    padding: 6rem 2rem;
    background: var(--bg-white);
}

.pricing-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.pricing-intro p {
    font-size: 1.2rem;
    color: var(--light-text);
}

.pricing-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.price-card {
    flex: 1;
    min-width: 300px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

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

.price-card.featured {
    border: 2px solid var(--accent-color);
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 3px;
    z-index: 10;
}

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

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

.price-card p {
    padding: 0 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--light-text);
    line-height: 1.7;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    padding: 0 1.5rem;
    margin-bottom: 1.5rem;
}

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

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

.form-section {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.selected-service-display {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 3px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
}

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

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

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: var(--accent-color);
    color: var(--bg-white);
    border: none;
    border-radius: 3px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #9d8566;
    transform: translateY(-2px);
}

.final-push {
    padding: 6rem 2rem;
    background: var(--primary-color);
    text-align: center;
    color: var(--bg-white);
}

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

.final-push p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn-primary-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--accent-color);
    color: var(--bg-white);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.btn-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

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

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

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.4s ease;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.sticky-btn {
    display: block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--bg-white);
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

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

.page-hero {
    margin-top: 70px;
    padding: 5rem 2rem 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    text-align: center;
    color: var(--bg-white);
}

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

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.about-story {
    padding: 4rem 2rem;
    background: var(--bg-white);
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-block {
    margin-bottom: 4rem;
}

.story-block h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.story-block p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--light-text);
    margin-bottom: 1.2rem;
}

.story-visual {
    margin: 4rem 0;
}

.story-visual img {
    width: 100%;
    border-radius: 4px;
}

.mission-statement {
    padding: 3rem;
    background: var(--bg-light);
    margin: 4rem 0;
    border-left: 5px solid var(--accent-color);
}

.mission-statement h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.mission-statement p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--light-text);
    margin-bottom: 1rem;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 4rem 0;
}

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 4px;
}

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

.value-item p {
    color: var(--light-text);
    line-height: 1.7;
}

.team-section {
    margin: 4rem 0;
}

.team-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.team-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--light-text);
    margin-bottom: 1rem;
}

.philosophy-block {
    padding: 3rem;
    background: var(--primary-color);
    color: var(--bg-white);
    margin: 4rem 0;
    border-radius: 4px;
}

.philosophy-block h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.philosophy-block p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.cta-about {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

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

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--bg-white);
    font-weight: 600;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.services-intro {
    padding: 3rem 2rem;
    background: var(--bg-white);
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--light-text);
    text-align: center;
}

.collections-showcase {
    padding: 2rem;
    background: var(--bg-white);
}

.collection-item {
    max-width: 1200px;
    margin: 0 auto 5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.collection-item.reverse {
    flex-direction: row-reverse;
}

.collection-visual {
    flex: 1;
    min-width: 300px;
}

.collection-visual img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.collection-details {
    flex: 1;
    min-width: 300px;
}

.collection-details h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.collection-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--light-text);
    margin-bottom: 2rem;
}

.collection-features {
    margin-bottom: 2rem;
}

.feature {
    padding: 0.7rem 0;
    font-size: 1rem;
    color: var(--text-color);
}

.price-display {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.services-cta {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--bg-white);
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    font-weight: 600;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: var(--bg-white);
}

.contact-content {
    padding: 4rem 2rem;
    background: var(--bg-white);
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
}

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

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--light-text);
    margin-bottom: 3rem;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.contact-item p {
    color: var(--light-text);
    line-height: 1.7;
}

.contact-item a {
    color: var(--accent-color);
    transition: opacity 0.3s ease;
}

.contact-item a:hover {
    opacity: 0.8;
}

.visit-info {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 4px;
}

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

.visit-info p {
    color: var(--light-text);
    line-height: 1.7;
}

.contact-map {
    flex: 1;
    min-width: 300px;
}

.map-placeholder {
    position: relative;
    height: 500px;
    border-radius: 4px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: var(--bg-white);
    padding: 1.5rem;
}

.map-overlay p {
    margin: 0;
    font-weight: 500;
}

.contact-cta {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.thanks-hero {
    margin-top: 70px;
    padding: 5rem 2rem;
    background: var(--bg-white);
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    color: var(--bg-white);
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 2rem;
}

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

.thanks-message {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 3rem;
}

.order-details {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 4px;
    margin-bottom: 3rem;
}

.order-details h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.next-steps {
    text-align: left;
    margin-bottom: 3rem;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
}

.step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.step-content p {
    color: var(--light-text);
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.legal-page {
    margin-top: 70px;
    padding: 4rem 2rem;
    background: var(--bg-white);
}

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

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.last-updated {
    color: var(--light-text);
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-color);
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--light-text);
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content ul li {
    margin-bottom: 0.7rem;
    line-height: 1.7;
    color: var(--light-text);
}

.legal-content a {
    color: var(--accent-color);
    transition: opacity 0.3s ease;
}

.legal-content a:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 3rem;
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin-bottom: 1.5rem;
    }

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

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

    .offset-layout,
    .split-insight,
    .benefit-block,
    .collection-item {
        flex-direction: column;
    }

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

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

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

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .cookie-content {
        flex-direction: column;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }
}