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

:root {
    --primary-color: #2d5a3d;
    --secondary-color: #7a9d7e;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f7f5;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

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);
}

.container-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

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

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}

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

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

.sticky-btn {
    background: var(--primary-color);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(45, 90, 61, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block;
}

.sticky-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(45, 90, 61, 0.4);
}

.hero-full {
    margin-top: 70px;
    height: 85vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 50px;
}

.hero-overlay h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 800;
}

.hero-subtitle {
    font-size: 21px;
    line-height: 1.5;
    color: var(--text-light);
    margin-bottom: 36px;
}

.cta-hero {
    background: var(--primary-color);
    color: white;
    padding: 18px 42px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    display: inline-block;
    transition: background 0.3s;
}

.cta-hero:hover {
    background: #234a30;
}

.hero-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    opacity: 0.12;
}

.intro-story {
    padding: 100px 0;
    background: var(--bg-light);
}

.intro-story h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 32px;
    font-weight: 700;
}

.intro-story p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: var(--text-light);
}

.inline-cta {
    margin-top: 40px;
}

.link-arrow {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
}

.problem-section {
    padding: 90px 0;
}

.split-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 42px;
    margin-bottom: 28px;
    font-weight: 700;
}

.split-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-light);
}

.problem-list {
    list-style: none;
    margin: 30px 0;
}

.problem-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 17px;
    color: var(--text-light);
}

.problem-list li:before {
    content: "×";
    position: absolute;
    left: 0;
    color: #c44;
    font-size: 24px;
    font-weight: bold;
}

.split-image {
    flex: 1;
    height: 450px;
    border-radius: 12px;
    background: linear-gradient(135deg, #e8e8e8, #d0d0d0);
}

.problem-img {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    opacity: 0.3;
}

.insight-reveal {
    padding: 100px 0;
    background: var(--primary-color);
    color: white;
}

.insight-reveal h2 {
    font-size: 44px;
    margin-bottom: 30px;
}

.insight-reveal p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.insight-box {
    background: rgba(255, 255, 255, 0.15);
    padding: 40px;
    border-radius: 10px;
    margin-top: 40px;
    border-left: 4px solid var(--accent-color);
}

.insight-box p {
    margin-bottom: 16px;
}

.trust-layer {
    padding: 90px 0;
    background: var(--bg-light);
}

.testimonial-grid {
    display: flex;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    flex: 1;
    background: white;
    padding: 36px;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

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

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

.story-deep {
    padding: 100px 0;
}

.story-deep h2 {
    font-size: 46px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.story-columns {
    display: flex;
    gap: 50px;
}

.story-col {
    flex: 1;
}

.story-col h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.story-col p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
}

.benefits-cascade {
    padding: 100px 0;
    background: var(--bg-light);
}

.benefits-cascade h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 70px;
    font-weight: 700;
}

.benefit-item {
    max-width: 680px;
    margin: 0 auto 50px;
    padding-left: 30px;
    border-left: 3px solid var(--secondary-color);
}

.benefit-item h3 {
    font-size: 26px;
    margin-bottom: 14px;
    color: var(--primary-color);
}

.benefit-item p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
}

.inline-cta-center {
    text-align: center;
    margin-top: 60px;
}

.cta-secondary {
    background: var(--secondary-color);
    color: white;
    padding: 16px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: background 0.3s;
}

.cta-secondary:hover {
    background: var(--primary-color);
}

.social-proof {
    padding: 90px 0;
}

.social-proof h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
}

.review-block {
    max-width: 720px;
    margin: 0 auto 40px;
    padding: 32px;
    background: var(--bg-light);
    border-radius: 8px;
}

.review-block p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 16px;
    font-style: italic;
}

.review-block span {
    font-size: 15px;
    color: var(--text-light);
    font-weight: 600;
}

.collections-preview {
    padding: 100px 0;
    background: white;
}

.collections-preview h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

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

.collection-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.collection-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 300px;
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s;
}

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

.card-image {
    height: 220px;
    background: linear-gradient(135deg, #d0d0d0, #e8e8e8);
}

.everyday-img {
    background: linear-gradient(135deg, #a8c9a8, #7a9d7e);
}

.season-img {
    background: linear-gradient(135deg, #d4a574, #c89563);
}

.active-img {
    background: linear-gradient(135deg, #6a8fb3, #507ea4);
}

.organic-img {
    background: linear-gradient(135deg, #e8d5b7, #d4c5a9);
}

.special-img {
    background: linear-gradient(135deg, #9a8c7e, #7d6f61);
}

.accessories-img {
    background: linear-gradient(135deg, #b89f91, #a58c7e);
}

.collection-card h3 {
    font-size: 24px;
    margin: 24px 24px 12px;
    color: var(--primary-color);
}

.collection-card p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 24px 20px;
    color: var(--text-light);
}

.collection-card .features {
    list-style: none;
    margin: 0 24px 20px;
}

.collection-card .features li {
    font-size: 14px;
    padding: 6px 0 6px 20px;
    position: relative;
    color: var(--text-light);
}

.collection-card .features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.price-tag {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 24px 24px;
}

.urgency-layer {
    padding: 80px 0;
    background: #fffbf5;
}

.urgency-box {
    background: white;
    padding: 50px;
    border-radius: 12px;
    border: 2px solid var(--accent-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.urgency-box h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.urgency-note {
    font-weight: 700;
    color: var(--accent-color);
}

.form-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.form-section h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 24px;
    font-weight: 700;
}

.form-section > .container-narrow > p {
    font-size: 18px;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
}

.order-form {
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    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);
}

.checkbox-group {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 14px;
}

.btn-submit {
    background: var(--primary-color);
    color: white;
    padding: 18px 48px;
    font-size: 17px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.btn-submit:hover {
    background: #234a30;
}

.final-cta {
    padding: 100px 0;
    text-align: center;
}

.final-cta h2 {
    font-size: 42px;
    margin-bottom: 24px;
    font-weight: 700;
}

.final-cta p {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 40px;
}

.cta-final {
    background: var(--accent-color);
    color: white;
    padding: 18px 42px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    display: inline-block;
    transition: background 0.3s;
}

.cta-final:hover {
    background: #c89563;
}

.main-footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
    color: #b0b0b0;
}

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

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

.footer-col ul li a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 14px;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.96);
    backdrop-filter: blur(10px);
    color: white;
    padding: 24px;
    z-index: 10000;
    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: 30px;
}

.cookie-content p {
    font-size: 15px;
    line-height: 1.5;
}

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

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.btn-accept:hover {
    background: #234a30;
}

.btn-reject {
    background: #555;
    color: white;
}

.btn-reject:hover {
    background: #666;
}

.page-hero {
    padding: 140px 0 80px;
    text-align: center;
    background: var(--bg-light);
}

.page-hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-intro {
    font-size: 20px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.about-content {
    padding: 80px 0;
}

.about-content h2 {
    font-size: 38px;
    margin-bottom: 28px;
    font-weight: 700;
}

.about-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-light);
}

.values-section {
    padding: 90px 0;
    background: var(--bg-light);
}

.values-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

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

.timeline-section {
    padding: 90px 0;
}

.timeline-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.timeline-item {
    padding: 30px 0 30px 60px;
    position: relative;
    border-left: 2px solid var(--secondary-color);
}

.timeline-item:last-child {
    border-left: none;
}

.timeline-year {
    position: absolute;
    left: -60px;
    top: 30px;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    background: white;
    padding: 5px 10px;
}

.timeline-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

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

.team-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.team-section h2 {
    font-size: 38px;
    margin-bottom: 28px;
    font-weight: 700;
}

.team-section p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-light);
}

.cta-about {
    padding: 80px 0;
    text-align: center;
}

.cta-about h2 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-about p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 16px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #234a30;
}

.services-intro {
    padding: 60px 0;
    background: var(--bg-light);
}

.services-intro p {
    font-size: 19px;
    line-height: 1.7;
    color: var(--text-light);
    text-align: center;
}

.services-list {
    padding: 80px 0;
}

.service-item {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 100px;
}

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

.service-image {
    flex: 1;
    height: 400px;
    border-radius: 12px;
    background: linear-gradient(135deg, #d0d0d0, #e8e8e8);
}

.service-content {
    flex: 1;
}

.service-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-content h3 {
    font-size: 20px;
    margin: 24px 0 12px;
    color: var(--primary-color);
}

.service-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: var(--text-light);
}

.service-content ul {
    list-style: none;
    margin: 16px 0;
}

.service-content ul li {
    padding: 8px 0 8px 24px;
    position: relative;
    font-size: 16px;
    color: var(--text-light);
}

.service-content ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 20px;
}

.service-price {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 24px 0;
}

.btn-service {
    background: var(--secondary-color);
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: background 0.3s;
}

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

.services-guarantee {
    padding: 80px 0;
    background: var(--bg-light);
}

.services-guarantee h2 {
    font-size: 38px;
    margin-bottom: 28px;
    font-weight: 700;
    text-align: center;
}

.services-guarantee p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-light);
    text-align: center;
}

.cta-services {
    padding: 80px 0;
    text-align: center;
}

.cta-services h2 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-services p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.contact-content {
    padding: 80px 0;
}

.contact-info {
    margin-bottom: 60px;
}

.contact-info h2 {
    font-size: 38px;
    margin-bottom: 40px;
    font-weight: 700;
}

.contact-block {
    margin-bottom: 36px;
}

.contact-block h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.contact-block p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
}

.contact-block a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-faq {
    margin-top: 60px;
}

.contact-faq h2 {
    font-size: 38px;
    margin-bottom: 40px;
    font-weight: 700;
}

.faq-item {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
}

.faq-item a {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-cta {
    padding: 80px 0;
    background: var(--bg-light);
    text-align: center;
}

.contact-cta h2 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-cta p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.thanks-section {
    padding: 140px 0 100px;
    min-height: 70vh;
}

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 28px;
    font-weight: 800;
    color: var(--primary-color);
}

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

.thanks-content p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.next-steps {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
    margin: 50px 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 24px;
    text-align: center;
}

.next-steps ol {
    max-width: 500px;
    margin: 0 auto;
    padding-left: 20px;
}

.next-steps li {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: var(--text-light);
}

.thanks-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.thanks-cta .btn-secondary {
    background: var(--secondary-color);
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.thanks-cta .btn-secondary:hover {
    background: var(--primary-color);
}

.legal-page {
    padding: 140px 0 80px;
}

.legal-page h1 {
    font-size: 44px;
    margin-bottom: 20px;
    font-weight: 800;
}

.legal-intro {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
    font-style: italic;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 700;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    font-weight: 600;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.legal-page ul {
    margin: 20px 0 20px 30px;
}

.legal-page ul li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.legal-page a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-overlay h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .hero-image {
        opacity: 0.08;
    }

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

    .story-columns {
        flex-direction: column;
    }

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

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

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

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

    .sticky-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .service-item,
    .service-item.reverse {
        flex-direction: column;
    }

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

    .thanks-cta {
        flex-direction: column;
    }
}