/* ===== POLICY PAGES STYLES ===== */

.policy-hero {
    min-height: 40vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a1f2e 100%);
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.policy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('./img/T9CI1p.jpg') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.policy-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.policy-hero h1 {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease both;
}

.policy-hero-subtitle {
    font-size: 1.2rem;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.policy-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.policy-nav a {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.policy-nav a:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.policy-content {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.policy-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 3rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.policy-section:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-light);
}

.policy-section h2 {
    color: var(--highlight-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.policy-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.policy-section h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.policy-section p {
    color: var(--white);
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.policy-section ul {
    list-style: none;
    padding-left: 0;
}

.policy-section li {
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 0.8rem;
    padding-left: 2rem;
    position: relative;
}

.policy-section li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.policy-section strong {
    color: var(--secondary-color);
}

.policy-section em {
    color: var(--accent-color);
    font-style: normal;
}

.policy-highlight {
    background: rgba(255, 209, 102, 0.1);
    border-left: 4px solid var(--secondary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 10px 10px 0;
}

.policy-highlight p {
    margin: 0;
    color: var(--white);
    opacity: 1;
}

.policy-contact {
    background: rgba(6, 214, 160, 0.1);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 3rem;
    text-align: center;
    border: 1px solid rgba(6, 214, 160, 0.2);
}

.policy-contact h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.policy-contact p {
    margin-bottom: 1rem;
}

.policy-contact a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.policy-contact a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.policy-date {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-date p {
    color: var(--white);
    opacity: 0.7;
    font-size: 0.9rem;
    margin: 0;
}

.breadcrumb {
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb-item {
    color: var(--white);
    opacity: 0.7;
}

.breadcrumb-item:not(:last-child)::after {
    content: ' → ';
    color: var(--accent-color);
    margin: 0 0.5rem;
}

.breadcrumb-item a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.breadcrumb-item a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.back-to-home {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.back-to-home a {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-light);
}

.back-to-home a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 209, 102, 0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .policy-hero h1 {
        font-size: 2rem;
    }
    
    .policy-hero-subtitle {
        font-size: 1rem;
    }
    
    .policy-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .policy-section {
        padding: 2rem;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
    
    .policy-section h3 {
        font-size: 1.2rem;
    }
    
    .breadcrumb-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .breadcrumb-item:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .policy-hero h1 {
        font-size: 1.5rem;
    }
    
    .policy-section {
        padding: 1.5rem;
    }
    
    .policy-highlight {
        padding: 1rem;
    }
    
    .policy-contact {
        padding: 1.5rem;
    }
} 