:root {
    --primary-color: #4a6741;
    --secondary-color: #7b9471;
    --accent-color: #d4b996;
    --light-color: #f5f3f0;
    --text-dark: #2c3e50;
    --zen-gold: #d4af37;
    --zen-green: #749471;
    --zen-beige: #f0ede8;
    --shadow-soft: 0 10px 40px rgba(74, 103, 65, 0.15);
    --shadow-medium: 0 15px 50px rgba(74, 103, 65, 0.25);
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--light-color);
    overflow-x: hidden;
}

/* Decorative Background Elements */
.zen-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.zen-circle {
    position: absolute;
    border: 2px solid rgba(116, 148, 113, 0.1);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

.zen-circle:nth-child(3) {
    width: 400px;
    height: 400px;
    top: 50%;
    right: 20%;
    animation-delay: -14s;
}

.zen-lotus {
    position: absolute;
    width: 100px;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50 10 C30 30, 30 70, 50 90 C70 70, 70 30, 50 10 Z" fill="rgba(116,148,113,0.05)"/></svg>') no-repeat center;
    background-size: contain;
    animation: rotate 30s infinite linear;
}

.zen-lotus-2 {
    top: 30%;
    left: 10%;
    animation-delay: -10s;
    transform: scale(0.7);
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(10px) rotate(240deg); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 1rem 0;
    z-index: 1050;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner a {
    color: var(--accent-color);
    text-decoration: none;
}

.cookie-banner a:hover {
    text-decoration: underline;
}

/* Navigation */
.zen-navbar {
    background: rgba(245, 243, 240, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(116, 148, 113, 0.1);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.zen-navbar.scrolled {
    background: rgba(245, 243, 240, 0.98);
    padding: 0.5rem 0;
    box-shadow: var(--shadow-soft);
}

.zen-brand {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color) !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.zen-brand:hover {
    color: var(--secondary-color) !important;
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    background: rgba(116, 148, 113, 0.1);
    transform: translateY(-2px);
}

/* Buttons */
.zen-btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.zen-btn-primary:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.zen-btn-primary:hover:before {
    left: 100%;
}

.zen-btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    color: white;
}

.zen-btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.zen-btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--zen-beige) 0%, var(--light-color) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="zen-pattern" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(116,148,113,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23zen-pattern)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.zen-quote-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.zen-quote {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(116, 148, 113, 0.2);
    box-shadow: var(--shadow-soft);
    position: relative;
}

.quote-icon {
    font-size: 2rem;
    color: var(--zen-gold);
    margin-bottom: 1rem;
}

.quote-text {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1rem;
    min-height: 60px;
}

.quote-author {
    color: var(--primary-color);
    font-weight: 500;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-dark);
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto;
}

.hero-buttons {
    margin-top: 2rem;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-color);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--zen-gold), var(--accent-color));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-dark);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* World Map Section */
.world-map-section {
    background: linear-gradient(45deg, #f8f9fa 0%, var(--zen-beige) 100%);
    position: relative;
}

.world-map-container {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.world-map {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #e8f4f8 0%, #d4edda 100%);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.world-map::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, var(--zen-green) 8px, transparent 8px),
        radial-gradient(circle at 60% 60%, var(--primary-color) 6px, transparent 6px),
        radial-gradient(circle at 80% 40%, var(--secondary-color) 10px, transparent 10px),
        radial-gradient(circle at 40% 80%, var(--zen-gold) 7px, transparent 7px),
        radial-gradient(circle at 70% 20%, var(--accent-color) 9px, transparent 9px);
    animation: pulse-regions 4s infinite ease-in-out;
}

@keyframes pulse-regions {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.map-legend {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--secondary-color);
}

.legend-color.active {
    background: var(--zen-gold);
    animation: glow 2s infinite ease-in-out;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 5px var(--zen-gold); }
    50% { box-shadow: 0 0 15px var(--zen-gold), 0 0 25px var(--zen-gold); }
}

/* Breathing Section */
.breathing-section {
    background: linear-gradient(135deg, var(--light-color) 0%, #f8f9fa 100%);
}

.breathing-instructions {
    margin-bottom: 2rem;
}

.instruction-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.instruction-item:hover {
    transform: translateX(10px);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 1rem;
    flex-shrink: 0;
}

.breathing-exercise {
    text-align: center;
}

.breathing-circle {
    width: 250px;
    height: 250px;
    margin: 0 auto;
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.breathing-circle:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
}

.breathing-circle.inhale {
    transform: scale(1.2);
    background: rgba(116, 148, 113, 0.1);
}

.breathing-circle.hold {
    background: rgba(212, 175, 150, 0.2);
}

.breathing-circle.exhale {
    transform: scale(0.8);
    background: rgba(74, 103, 65, 0.1);
}

.breathing-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.breath-count {
    font-size: 2rem;
    font-weight: 700;
    color: var(--zen-gold);
}

/* Daily Program */
.daily-program {
    background: linear-gradient(45deg, var(--zen-beige) 0%, var(--light-color) 100%);
}

.program-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(116, 148, 113, 0.1);
    height: 100%;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--zen-gold), var(--accent-color));
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.program-card.morning::before {
    background: linear-gradient(90deg, #ffd700, #ffa500);
}

.program-card.afternoon::before {
    background: linear-gradient(90deg, var(--zen-green), var(--secondary-color));
}

.program-card.evening::before {
    background: linear-gradient(90deg, #4a6fa5, #2c3e50);
}

.program-time {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

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

.program-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    color: var(--accent-color);
    opacity: 0.3;
}

/* Services Section */
.services-section {
    background: white;
}

.service-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--zen-gold));
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.service-card.featured {
    border: 2px solid var(--zen-gold);
    background: linear-gradient(135deg, #fffbf0 0%, #fff8e1 100%);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

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

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--zen-gold);
    margin: 1.5rem 0;
}

.service-price span {
    font-size: 0.9rem;
    color: var(--text-dark);
    opacity: 0.7;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-dark);
}

.service-features i {
    color: var(--zen-green);
    margin-right: 0.5rem;
}

/* Gallery Section */
.gallery-section {
    background: linear-gradient(135deg, var(--zen-beige) 0%, var(--light-color) 100%);
}

.gallery-grid {
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
    box-shadow: var(--shadow-soft);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* Footer */
.zen-footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--text-dark) 100%);
    color: white;
}

.footer-brand h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

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

.footer-links a:hover {
    color: var(--accent-color);
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .breathing-circle {
        width: 200px;
        height: 200px;
    }
    
    .program-card {
        margin-bottom: 2rem;
    }
    
    .gallery-item {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .zen-btn-primary,
    .zen-btn-outline {
        display: block;
        text-align: center;
        margin: 0.5rem 0;
    }
    
    .map-legend {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
}

/* Additional animations for enhanced user experience */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.zen-circle:nth-child(2) {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: -5%;
    animation-delay: -7s;
}

.zen-circle:nth-child(1) {
    width: 300px;
    height: 300px;
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}



.navbar-brand img{
    max-width: 200px;
    width: 200px;
    object-fit: contain;
}

html{
    overflow-x: hidden;
}


footer .navbar-brand img{
    filter: brightness(0) invert(1);

}

.article-image img{
    width: 100%;
}


        .blog-article {
            background: var(--light-color);
        }

        .article-header {
            background: linear-gradient(135deg, var(--zen-beige) 0%, var(--light-color) 100%);
            padding: 120px 0 60px;
            position: relative;
            overflow: hidden;
        }

        .article-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="zen-pattern" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(116,148,113,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23zen-pattern)"/></svg>');
            opacity: 0.3;
        }

        .breadcrumb {
            background: none;
            padding: 0;
            margin-bottom: 2rem;
        }

        .breadcrumb-item a {
            color: var(--primary-color);
            text-decoration: none;
        }

        .breadcrumb-item.active {
            color: var(--text-dark);
        }

        .article-meta {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
        }

        .article-category {
            background: var(--primary-color);
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 15px;
            font-size: 0.85rem;
            font-weight: 500;
        }

        .article-date,
        .article-reading-time {
            color: var(--text-dark);
            opacity: 0.7;
            font-size: 0.9rem;
        }

        .article-title {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .article-subtitle {
            font-size: 1.2rem;
            color: var(--text-dark);
            opacity: 0.8;
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .article-image {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-medium);
            margin-bottom: 3rem;
        }

        .article-content {
            padding: 3rem 0;
        }

        .article-body {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-dark);
        }

        .content-section {
            margin-bottom: 3rem;
        }

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

        .content-section h3 {
            color: var(--secondary-color);
            font-size: 1.5rem;
            margin-bottom: 1rem;
            margin-top: 1.5rem;
        }

        .highlight-box {
            background: linear-gradient(135deg, #e8f4fd 0%, #d1ecf1 100%);
            border-left: 4px solid var(--zen-gold);
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
        }

        .highlight-box h3 {
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .benefits-grid {
            margin: 3rem 0;
        }

        .benefit-card {
            background: white;
            border-radius: 15px;
            padding: 1.5rem;
            text-align: center;
            box-shadow: var(--shadow-soft);
            transition: transform 0.3s ease;
            height: 100%;
        }

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

        .benefit-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            color: white;
            font-size: 1.5rem;
        }

        .practical-tips {
            background: rgba(255, 255, 255, 0.8);
            border-radius: 20px;
            padding: 2rem;
            margin: 3rem 0;
        }

        .tip-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid rgba(116, 148, 113, 0.2);
        }

        .tip-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .tip-number {
            width: 40px;
            height: 40px;
            background: var(--zen-gold);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            margin-right: 1rem;
            flex-shrink: 0;
        }

        .tip-content h4 {
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        .zen-quote-article {
            background: var(--primary-color);
            color: white;
            padding: 2rem;
            border-radius: 20px;
            text-align: center;
            margin: 3rem 0;
            position: relative;
        }

        .zen-quote-article i {
            font-size: 2rem;
            color: var(--zen-gold);
            margin-bottom: 1rem;
        }

        .zen-quote-article p {
            font-size: 1.3rem;
            font-style: italic;
            margin-bottom: 1rem;
        }

        .zen-quote-article cite {
            color: var(--accent-color);
            font-weight: 500;
        }

        .research-box {
            background: #f8f9fa;
            border: 1px solid rgba(116, 148, 113, 0.3);
            border-radius: 15px;
            padding: 1.5rem;
            margin: 2rem 0;
        }

        .research-box h3 {
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .research-box ul {
            margin: 0;
        }

        .research-box li {
            margin-bottom: 0.75rem;
        }

        .custom-list {
            padding-left: 0;
        }

        .custom-list li {
            list-style: none;
            padding: 0.5rem 0;
            padding-left: 2rem;
            position: relative;
        }

        .custom-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--zen-green);
            font-weight: bold;
        }

        .conclusion-section {
            background: rgba(116, 148, 113, 0.05);
            border-radius: 20px;
            padding: 2rem;
            margin: 3rem 0;
        }

        .cta-section {
            margin: 3rem 0;
        }

        .cta-box {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 2rem;
            border-radius: 20px;
            text-align: center;
        }

        .cta-box h3 {
            color: white;
            margin-bottom: 1rem;
        }

        .article-sidebar {
            padding-left: 2rem;
        }

        .sidebar-widget {
            background: white;
            border-radius: 15px;
            padding: 1.5rem;
            margin-bottom: 2rem;
            box-shadow: var(--shadow-soft);
        }

        .sidebar-widget h4 {
            color: var(--primary-color);
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .related-post {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(116, 148, 113, 0.2);
        }

        .related-post:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .related-post img {
            width: 60px;
            height: 60px;
            object-fit: cover;
            border-radius: 10px;
            margin-right: 1rem;
        }

        .related-content h5 {
            font-size: 0.9rem;
            margin-bottom: 0.25rem;
        }

        .related-content a {
            color: var(--text-dark);
            text-decoration: none;
        }

        .related-content a:hover {
            color: var(--primary-color);
        }

        .related-date {
            font-size: 0.8rem;
            color: var(--text-dark);
            opacity: 0.7;
        }

        .newsletter-form input {
            margin-bottom: 0.5rem;
        }

        .category-list {
            list-style: none;
            padding: 0;
        }

        .category-list li {
            margin-bottom: 0.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid rgba(116, 148, 113, 0.1);
        }

        .category-list li:last-child {
            border-bottom: none;
        }

        .category-list a {
            color: var(--text-dark);
            text-decoration: none;
            display: flex;
            justify-content: space-between;
        }

        .category-list a:hover {
            color: var(--primary-color);
        }

        .category-list span {
            color: var(--text-dark);
            opacity: 0.6;
            font-size: 0.9rem;
        }

        @media (max-width: 768px) {
            .article-title {
                font-size: 2rem;
            }
            
            .article-sidebar {
                padding-left: 0;
                margin-top: 3rem;
            }
            
            .article-meta {
                justify-content: center;
                text-align: center;
            }
        }


        .legal-page {
            background: var(--light-color);
            padding: 120px 0 60px;
            min-height: 100vh;
        }

        .legal-header {
            text-align: center;
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 2px solid var(--accent-color);
        }

        .legal-header h1 {
            color: var(--primary-color);
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .last-updated {
            color: var(--text-dark);
            opacity: 0.7;
            font-style: italic;
        }

        .legal-content {
            background: white;
            border-radius: 20px;
            padding: 3rem;
            box-shadow: var(--shadow-soft);
        }

        .legal-section {
            margin-bottom: 3rem;
        }

        .legal-section h2 {
            color: var(--primary-color);
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid rgba(116, 148, 113, 0.2);
        }

        .legal-section h3 {
            color: var(--secondary-color);
            font-size: 1.3rem;
            margin-bottom: 1rem;
            margin-top: 1.5rem;
        }

        .legal-section h4 {
            color: var(--primary-color);
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        .legal-section p {
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .legal-section ul {
            margin-bottom: 1rem;
            padding-left: 1.5rem;
        }

        .legal-section li {
            margin-bottom: 0.5rem;
            line-height: 1.6;
        }

        .info-box {
            background: var(--zen-beige);
            border-left: 4px solid var(--zen-gold);
            padding: 1.5rem;
            border-radius: 10px;
            margin: 1rem 0;
        }

        .legal-basis {
            background: rgba(116, 148, 113, 0.1);
            border-radius: 10px;
            padding: 1rem;
            margin-bottom: 1rem;
        }

        .legal-basis h4 {
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        .rights-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
        }

        .right-item {
            background: var(--zen-beige);
            border-radius: 10px;
            padding: 1rem;
            text-align: center;
        }

        .right-item h4 {
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        .right-item i {
            color: var(--zen-gold);
        }

        .retention-table {
            background: #f8f9fa;
            border-radius: 10px;
            overflow: hidden;
            margin: 1rem 0;
        }

        .retention-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            padding: 1rem;
            border-bottom: 1px solid rgba(116, 148, 113, 0.2);
        }

        .retention-row:last-child {
            border-bottom: none;
        }

        .retention-type {
            color: var(--text-dark);
        }

        .retention-period {
            color: var(--primary-color);
            font-weight: 500;
            text-align: right;
        }

        .contact-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .contact-method {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            background: var(--zen-beige);
            padding: 1.5rem;
            border-radius: 10px;
        }

        .contact-method i {
            color: var(--zen-gold);
            font-size: 1.5rem;
            margin-top: 0.25rem;
        }

        .contact-method strong {
            color: var(--primary-color);
            display: block;
            margin-bottom: 0.5rem;
        }

        .contact-method p {
            margin: 0;
        }

        .contact-method a {
            color: var(--text-dark);
            text-decoration: none;
        }

        .contact-method a:hover {
            color: var(--primary-color);
        }

        @media (max-width: 768px) {
            .legal-content {
                padding: 2rem 1rem;
            }
            
            .legal-header h1 {
                font-size: 2rem;
            }
            
            .retention-row {
                grid-template-columns: 1fr;
                gap: 0.5rem;
            }
            
            .retention-period {
                text-align: left;
                font-style: italic;
            }
            
            .rights-grid {
                grid-template-columns: 1fr;
            }
        }