/* Policy Pages Styles */
.policy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.policy-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(0, 224, 255, 0.3);
}

.policy-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00E0FF;
    margin-bottom: 20px;
}

.policy-header p {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.policy-content {
    background: rgba(26, 26, 26, 0.7);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(210, 145, 90, 0.2);
    margin-bottom: 40px;
}

.policy-content h2 {
    color: #00E0FF;
    font-size: 1.8rem;
    margin-bottom: 20px;
    margin-top: 40px;
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content h3 {
    color: #00C1A2;
    font-size: 1.4rem;
    margin-bottom: 15px;
    margin-top: 30px;
}

.policy-content p {
    margin-bottom: 20px;
    line-height: 1.7;
    opacity: 0.9;
}

.policy-content ul,
.policy-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.policy-content li {
    margin-bottom: 10px;
    line-height: 1.6;
    opacity: 0.9;
}

.policy-content a {
    color: #00E0FF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-content a:hover {
    color: #00C1A2;
    text-decoration: underline;
}

.policy-content strong {
    color: #00E0FF;
    font-weight: 600;
}

.policy-content em {
    color: #D2915A;
    font-style: italic;
}

.contact-section {
    background: rgba(32, 58, 67, 0.5);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    margin-top: 40px;
}

.contact-section h3 {
    color: #00E0FF;
    margin-bottom: 15px;
}

.contact-section p {
    opacity: 0.9;
    margin-bottom: 20px;
}

.contact-section a {
    color: #00E0FF;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-section a:hover {
    color: #00C1A2;
}

.last-updated {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(210, 145, 90, 0.2);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Back to Home Button */
.back-home {
    display: inline-block;
    background: linear-gradient(135deg, #00E0FF 0%, #00C1A2 100%);
    color: #203A43;
    padding: 12px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 40px;
}

.back-home:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 224, 255, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .policy-container {
        padding: 20px 15px;
    }
    
    .policy-header h1 {
        font-size: 2rem;
    }
    
    .policy-content {
        padding: 30px 20px;
    }
    
    .policy-content h2 {
        font-size: 1.5rem;
    }
    
    .policy-content h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .policy-header h1 {
        font-size: 1.8rem;
    }
    
    .policy-content {
        padding: 20px 15px;
    }
} 