/* Reset og Mobile First Approach */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.site-main.midas-template {
    width: 100%;
    overflow-x: hidden;
}

/* HERO SECTION */
.hero {
    width: 100%;
    background: linear-gradient(173deg, #17c705 0%, #121810 .9%, #17c705 209%) !important;
    color: white;
    padding: 20px 0;
    min-height: 100vh;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Breadcrumbs */
.breadcrumbs {
    font-size: 14px;
    color: #cbd5e0;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.breadcrumbs span:last-child {
    color: #ffffff;
    font-weight: 600;
}

/* Hero Title */
.hero-title-wrap {
    text-align: center;
    margin-bottom: 40px;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin: 0;
    background: linear-gradient(45deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

/* Main Content Grid */
.hero-main {
    display: grid;
grid-template-columns: 1fr;
        gap: 40px;
    align-items: start;
}

/* Left Content Section */
.hero-left.glass.privacy {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    color: #2d3748;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.hero-left.glass.privacy h4 {
    color: black;
    font-size: clamp(1.2rem, 3vw, 1.4rem);
    font-weight: 600;
    margin: 30px 0 15px 0;
    border-left: 4px solid #16dd00;
    padding-left: 15px;
    line-height: 1.3;
}

.hero-left.glass.privacy h4:first-of-type {
    margin-top: 0;
}

.hero-left.glass.privacy p {
    line-height: 1.7;
    margin-bottom: 20px;
    color: black;
    font-size: 14px;
    text-align: justify;
}

.hero-left.glass.privacy strong {
    color: #1a365d;
    font-weight: 700;
}

/* Right Sidebar */
.hero-right {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: fit-content;
    position: sticky;
    top: 20px;
}

/* RESPONSIVE DESIGN */

/* Tablet Styles */
@media (max-width: 1024px) {
    .hero-inner {
        padding: 0 30px;
    }
    
    .hero-main {
        gap: 30px;
    }
    
    .hero-left.glass.privacy {
        padding: 30px;
    }
    
    .hero-right {
        padding: 25px;
    }
}

/* Mobile Styles - Tablet */
@media (max-width: 768px) {
    .hero {
        padding: 15px 0;
    }
    
    .hero-inner {
        padding: 0 20px;
    }
    
    .breadcrumbs {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .hero-title-wrap {
        margin-bottom: 30px;
    }
    
    .hero-main {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .hero-left.glass.privacy {
        padding: 25px;
        border-radius: 15px;
        order: 1;
    }
    
    .hero-left.glass.privacy h4 {
        font-size: 1.2rem;
        margin: 25px 0 12px 0;
        padding-left: 12px;
    }
    
    .hero-right {
        display: none; /* Hide sidebar on mobile */
    }
}

/* Mobile Styles - Small Phones */
@media (max-width: 480px) {
    .hero {
        padding: 10px 0;
    }
    
    .hero-inner {
        padding: 0 15px;
    }
    
    .breadcrumbs {
        font-size: 12px;
        gap: 6px;
    }
    
    .hero-title-wrap {
        margin-bottom: 25px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-left.glass.privacy {
        padding: 20px 15px;
        border-radius: 12px;
        margin: 0;
    }
    
    .hero-left.glass.privacy h4 {
        font-size: 1.1rem;
        margin: 20px 0 10px 0;
        padding-left: 10px;
        border-left-width: 3px;
    }
    
    .hero-left.glass.privacy p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 15px;
        text-align: left;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .hero-inner {
        padding: 0 10px;
    }
    
    .hero-left.glass.privacy {
        padding: 15px 10px;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .breadcrumbs {
        font-size: 11px;
    }
    
    .hero-left.glass.privacy h4 {
        font-size: 1rem;
        padding-left: 8px;
    }
    
    .hero-left.glass.privacy p {
        font-size: 0.9rem;
    }
}

/* Large Desktop Screens */
@media (min-width: 1440px) {
    .hero-inner {
        max-width: 1400px;
    }
}

/* Print Styles */
@media print {
    .hero {
        background: white !important;
        color: black !important;
        padding: 0 !important;
    }
    
    .hero-title {
        background: none !important;
        -webkit-text-fill-color: black !important;
        color: black !important;
    }
    
    .hero-left.glass.privacy {
        background: white !important;
        box-shadow: none !important;
        border: 1px solid #ccc !important;
    }
    
    .breadcrumbs, .hero-right {
        display: none !important;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    .hero-left.glass.privacy {
        backdrop-filter: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .hero-left.glass.privacy {
        background: white;
        border: 2px solid black;
    }
    
    .hero-left.glass.privacy h4 {
        border-left-color: black;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .hero-left.glass.privacy {
        background: rgba(0, 0, 0, 0.8);
        color: #e2e8f0;
    }
    
    .hero-left.glass.privacy h4 {
        color: #ffffff;
    }
    
    .hero-left.glass.privacy p {
        color: black;
    }
}

/* Fix for very tall screens */
@media (min-height: 1000px) {
    .hero {
        min-height: 70vh;
        display: flex;
        align-items: center;
    }
}