/* Policy Pages Specific Styles */

/* Policy Hero Section */
.policy-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.policy-hero::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 100 100"><circle cx="20" cy="20" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="5" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.5;
}

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

.policy-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

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

.policy-hero h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.last-updated {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Policy Content Section */
.policy-content-section {
    padding: 4rem 0;
    background: var(--background-color);
}

.policy-content-section .container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    max-width: 1200px;
}

/* Sidebar */
.policy-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
    background: white;
    border-radius: 15px;
    padding: 2rem 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.policy-sidebar h3 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.policy-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.policy-nav-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.9rem 1rem;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.policy-nav-link i {
    color: #667eea;
    font-size: 1.1rem;
    min-width: 20px;
}

.policy-nav-link:hover,
.policy-nav-link.active {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    color: #667eea;
    transform: translateX(5px);
}

/* Main Content */
.policy-main-content {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.policy-section {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
}

.policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.policy-section h2 {
    color: var(--text-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.policy-section h2 i {
    color: #667eea;
    font-size: 1.5rem;
}

.policy-section p {
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.policy-section ul {
    list-style: none;
    padding-left: 0;
}

.policy-section ul li {
    padding: 0.7rem 0;
    color: var(--text-color);
    line-height: 1.7;
    position: relative;
    padding-left: 1.5rem;
}

.policy-section ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.5rem;
}

.styled-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.styled-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    padding-left: 1rem;
}

.styled-list li::before {
    content: none;
}

.styled-list li i {
    color: #28a745;
    font-size: 1.2rem;
    margin-top: 2px;
}

/* Info Boxes */
.info-box,
.highlight-box {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    border-left: 4px solid #667eea;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.info-box h4 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.highlight-box {
    border-left-color: #ffc107;
    background: rgba(255, 193, 7, 0.05);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.15);
}

.feature-card i {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h4 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-card p {
    color: var(--light-text);
    font-size: 0.95rem;
    margin: 0;
}

/* Contact Box */
.contact-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    margin-top: 2rem;
}

.contact-box h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

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

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: white;
    color: #667eea;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact-email:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 992px) {
    .policy-content-section .container {
        grid-template-columns: 1fr;
    }
    
    .policy-sidebar {
        position: static;
        order: -1;
    }
    
    .policy-nav {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
}

@media (max-width: 768px) {
    .policy-hero h1 {
        font-size: 2rem;
    }
    
    .policy-icon {
        font-size: 3rem;
    }
    
    .policy-main-content {
        padding: 2rem 1.5rem;
    }
    
    .policy-nav {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}
