/* ==========================================================================
   POLICY PAGES (Privacy Policy, Terms & Conditions)
   ========================================================================== */

.policy-hero {
    background: linear-gradient(135deg, #084f3e 0%, #0B6B54 100%);
    padding: 140px 0 60px 0; /* Increased top padding for fixed navbar */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.policy-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('../img/pattern-dot.png');
    background-size: 20px;
    opacity: 0.1;
    z-index: 1;
}

.policy-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.policy-title {
    font-family: 'Sora', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

.policy-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}

.lux-breadcrumb-nav {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.lux-breadcrumb {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.95rem;
}

.lux-breadcrumb-item {
    color: rgba(255, 255, 255, 0.7);
}

.lux-breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s;
}

.lux-breadcrumb-item a:hover {
    color: #fff;
    text-decoration: underline;
}

.lux-breadcrumb-item + .lux-breadcrumb-item::before {
    content: "/";
    padding: 0 10px;
    color: rgba(255, 255, 255, 0.5);
}

.lux-breadcrumb-item.active {
    color: #fff;
    font-weight: 600;
}

/* Glassmorphism Content Area */
.policy-content-section {
    padding: 60px 0 100px 0;
    background-color: var(--lux-bg-light);
}

.policy-glass-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(11, 107, 84, 0.1);
    border-radius: 24px;
    padding: 50px 60px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin: -40px auto 0 auto;
    position: relative;
    z-index: 10;
}

.policy-text {
    font-family: 'DM Sans', sans-serif;
    color: var(--lux-text);
    line-height: 1.8;
    font-size: 1.05rem;
}

.policy-text h2 {
    font-family: 'Sora', sans-serif;
    font-size: 1.8rem;
    color: var(--lux-dark);
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.policy-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--lux-accent);
    border-radius: 2px;
}

.policy-text h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.4rem;
    color: var(--lux-primary);
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
}

.policy-text p {
    margin-bottom: 20px;
}

.policy-text ul, .policy-text ol {
    margin-bottom: 25px;
    padding-left: 20px;
}

.policy-text li {
    margin-bottom: 10px;
}

.policy-text a {
    color: var(--lux-primary);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.policy-text a:hover {
    color: var(--lux-accent);
    border-bottom-color: var(--lux-accent);
}

.last-updated {
    display: inline-block;
    background: rgba(11, 107, 84, 0.08);
    color: var(--lux-primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .policy-glass-container {
        padding: 40px 30px;
        margin-top: -20px;
        border-radius: 20px;
    }
    
    .policy-title {
        font-size: 2.2rem;
    }
    
    .policy-text h2 {
        font-size: 1.5rem;
    }
    
    .policy-text h3 {
        font-size: 1.25rem;
    }
    
    .policy-hero {
        padding: 120px 20px 60px 20px;
    }
}
