/* ===== GLOBAL STYLES ===== */
:root {
    --primary-color: #6C63FF;
    --secondary-color: #FF6B6B;
    --accent-color: #4ECDC4;
    --dark-color: #2D3436;
    --light-color: #FFFFFF;
    --text-color: #636E72;
    --gradient-1: linear-gradient(135deg, #6C63FF, #FF6B6B);
    --gradient-2: linear-gradient(135deg, #4ECDC4, #6C63FF);
    --gradient-3: linear-gradient(135deg, #FF6B6B, #4ECDC4);
    --font-primary: 'Space Grotesk', sans-serif;
    --font-display: 'Orbitron', monospace;
    --font-mono: 'JetBrains Mono', monospace;
    --shadow-1: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-2: 0 20px 60px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

html{
    overflow-x: hidden;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(45, 52, 54, 0.95);
    backdrop-filter: blur(20px);
    color: white;
    padding: 1rem 0;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

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

.cookie-banner p {
    font-size: 0.9rem;
    margin: 0;
}

.cookie-banner .btn {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

/* ===== NAVIGATION ===== */
.futuristic-nav {
    background: rgba(45, 52, 54, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    padding: 0.8rem 0;
}

.futuristic-nav.scrolled {
    background: rgba(45, 52, 54, 0.98);
    box-shadow: var(--shadow-1);
}

.futuristic-logo {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.8rem;
    text-decoration: none;
    color: var(--light-color) !important;
    text-shadow: 0 0 20px rgba(108, 99, 255, 0.5);
}

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

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    background: var(--gradient-1);
    transform: translateY(-2px);
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 60px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2D3436 0%, #636E72 100%);
    z-index: 0;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

.geometric-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(108, 99, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 107, 0.3) 0%, transparent 50%);
    z-index: -2;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--light-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-weight: 300;
}

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

.btn-primary-custom {
    background: var(--gradient-1);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    color: white;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(108, 99, 255, 0.3);
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(108, 99, 255, 0.4);
    color: white;
}

.btn-outline-light {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

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

.hero-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-2);
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    transition: var(--transition);
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(-10deg) rotateX(2deg) scale(1.05);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-dot {
    width: 10px;
    height: 30px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    position: relative;
}

.scroll-dot::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    animation: scroll 2s infinite;
}

/* ===== SECTION STYLES ===== */
.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 2px;
}

.section-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(108, 99, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(78, 205, 196, 0.05) 0%, transparent 50%);
    z-index: -1;
}

.section-background-alt {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    z-index: -1;
}

/* ===== INTERACTIVE GALLERY ===== */
.interactive-gallery {
    position: relative;
    padding: 5rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    height: 300px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    transition: var(--transition);
    padding: 2rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 0.9;
}

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

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

.gallery-overlay h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* ===== SERVICES PRICING ===== */
.services-pricing {
    background: #f8f9fa;
    padding: 5rem 0;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-2);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.service-card.premium::before {
    background: var(--gradient-1);
}

.service-card:hover::before {
    left: 0;
    opacity: 0.1;
}

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

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

.service-card.premium .service-icon {
    background: var(--gradient-1);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-card p {
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

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

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.btn-service {
    background: var(--gradient-2);
    border: none;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.btn-service:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(78, 205, 196, 0.3);
    color: white;
}

.service-card.premium .btn-service {
    background: var(--gradient-1);
}

.service-card.premium .btn-service:hover {
    box-shadow: 0 10px 25px rgba(108, 99, 255, 0.3);
}

/* ===== STORY TESTIMONIALS ===== */
.story-testimonials {
    padding: 5rem 0;
    background: var(--dark-color);
    color: white;
}

.story-testimonials .section-title {
    color: white;
}

.stories-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    height: 400px;
}

.story-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100px);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 2rem;
}

.story-item.active {
    opacity: 1;
    transform: translateX(0);
}

.story-avatar {
    flex-shrink: 0;
}

.story-avatar img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent-color);
}

.story-content h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.story-role {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.story-content blockquote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.story-rating {
    color: #FFD700;
}

.story-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.story-nav {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.story-nav:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}

.story-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--accent-color);
}

/* ===== CREATIVE TIMELINE ===== */
.creative-timeline {
    position: relative;
    padding: 5rem 0;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-1);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 2rem;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 2rem;
}

.timeline-marker {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 50%;
    top: 0;
}

.timeline-item:nth-child(odd) .timeline-marker {
    right: -12px;
}

.timeline-item:nth-child(even) .timeline-marker {
    left: -12px;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-1);
    transition: var(--transition);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-2);
}

.timeline-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* ===== INTERACTIVE MAP ===== */
.interactive-map {
    background: #f8f9fa;
    padding: 5rem 0;
}

.map-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.locations-map {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 20px;
    height: 500px;
    position: relative;
    overflow: hidden;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><path d="M150,300 Q200,250 250,300 T350,300 Q400,250 450,300 T550,300 Q600,250 650,300 T750,300" stroke="rgba(0,0,0,0.1)" stroke-width="2" fill="none"/><path d="M100,400 Q150,350 200,400 T300,400 Q350,350 400,400 T500,400 Q550,350 600,400 T700,400" stroke="rgba(0,0,0,0.1)" stroke-width="2" fill="none"/></svg>');
}

.location-pin {
    position: absolute;
    color: var(--secondary-color);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2;
}

.location-pin:hover {
    transform: scale(1.2);
    color: var(--primary-color);
}

.location-info {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: var(--shadow-1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    margin-bottom: 10px;
}

.location-pin:hover .location-info {
    opacity: 1;
    visibility: visible;
}

.location-info::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: white;
}

.location-info h5 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-weight: 700;
}

.location-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-color);
}

/* ===== BTS SLIDER ===== */
.bts-slider {
    background: var(--dark-color);
    padding: 5rem 0;
}

.bts-slider .section-title {
    color: white;
}

.bts-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
}

.bts-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: var(--transition);
}

.bts-slide.active {
    opacity: 1;
}

.bts-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bts-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem;
}

.bts-overlay h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.bts-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    transform: translateY(-50%);
}

.bts-nav {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.bts-nav:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}

/* ===== FOOTER ===== */
.footer {
    position: relative;
    background: var(--dark-color);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(108, 99, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(78, 205, 196, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--light-color);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

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

.social-links a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.2rem;
}

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

.footer h4 {
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.contact-info p {
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
}

.contact-info i {
    color: var(--accent-color);
}

.legal-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.legal-links a:hover {
    color: var(--accent-color);
    padding-left: 0.5rem;
}

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

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ===== ANIMATIONS ===== */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes scroll {
    0% { top: 5px; opacity: 0; }
    50% { opacity: 1; }
    100% { top: 15px; opacity: 0; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 4rem !important;
        padding-right: 0 !important;
    }
    
    .timeline-marker {
        left: 10px !important;
        right: auto !important;
    }
    
    .story-item {
        flex-direction: column;
        text-align: center;
        height: auto;
        position: relative;
    }
    
    .stories-container {
        height: auto;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        text-align: center;
    }
    
    .location-pin {
        font-size: 1.5rem;
    }
    
    .bts-controls {
        position: relative;
        top: auto;
        transform: none;
        justify-content: center;
        gap: 1rem;
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .story-avatar img {
        width: 80px;
        height: 80px;
    }
    
    .locations-map {
        height: 300px;
    }
    
    .bts-carousel {
        height: 300px;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-gradient {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient {
    background: var(--gradient-1);
}

.shadow-custom {
    box-shadow: var(--shadow-2);
}

.border-radius-custom {
    border-radius: 20px;
}

.transition-custom {
    transition: var(--transition);
}


        /* Legal pages styles */
        .legal-content {
            margin-top: 100px;
            background: #f8f9fa;
            min-height: calc(100vh - 100px);
        }
        
        .legal-document {
            background: white;
            border-radius: 15px;
            padding: 3rem;
            box-shadow: var(--shadow-1);
        }
        
        .legal-header {
            border-bottom: 2px solid var(--primary-color);
            padding-bottom: 2rem;
            margin-bottom: 3rem;
        }
        
        .legal-title {
            font-family: var(--font-display);
            color: var(--dark-color);
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .legal-subtitle {
            color: var(--text-color);
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }
        
        .legal-date {
            color: var(--primary-color);
            font-weight: 600;
            margin: 0;
        }
        
        .legal-nav {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 1.5rem;
        }
        
        .legal-nav h5 {
            color: var(--dark-color);
            margin-bottom: 1rem;
            font-weight: 700;
        }
        
        .nav-list {
            list-style: none;
            padding: 0;
            margin: 0;
            columns: 2;
            column-gap: 2rem;
        }
        
        .nav-list li {
            margin-bottom: 0.5rem;
            break-inside: avoid;
        }
        
        .nav-list a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
        }
        
        .nav-list a:hover {
            color: var(--secondary-color);
            padding-left: 0.5rem;
        }
        
        .legal-section {
            margin-bottom: 3rem;
            scroll-margin-top: 120px;
        }
        
        .legal-section h2 {
            color: var(--dark-color);
            font-weight: 700;
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
            border-left: 4px solid var(--primary-color);
            padding-left: 1rem;
        }
        
        .legal-section h3 {
            color: var(--dark-color);
            font-weight: 600;
            margin: 2rem 0 1rem 0;
            font-size: 1.3rem;
        }
        
        .legal-section p {
            line-height: 1.7;
            margin-bottom: 1.5rem;
            color: var(--text-color);
        }
        
        .legal-section ul,
        .legal-section ol {
            margin-bottom: 1.5rem;
            padding-left: 2rem;
        }
        
        .legal-section li {
            margin-bottom: 0.8rem;
            line-height: 1.6;
            color: var(--text-color);
        }
        
        .legal-section strong {
            color: var(--dark-color);
            font-weight: 600;
        }
        
        .legal-footer .alert {
            border-radius: 10px;
            border: none;
            background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
        }
        
        .legal-footer .alert h5 {
            color: var(--dark-color);
            margin-bottom: 1rem;
        }
        
        .legal-links .active {
            color: var(--accent-color) !important;
            font-weight: 600;
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .legal-document {
                padding: 1.5rem;
            }
            
            .legal-title {
                font-size: 2rem;
            }
            
            .legal-nav {
                padding: 1rem;
            }
            
            .legal-section h2 {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .legal-content {
                margin-top: 80px;
            }
        }
        
        @media (max-width: 576px) {
            .legal-document {
                padding: 1rem;
            }
            
            .legal-title {
                font-size: 1.8rem;
            }
            
            .legal-subtitle {
                font-size: 1rem;
            }
        }