/* Policy Pages Styles - Black and Gold Theme */

/* Policy Header */
.policy-header {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    color: white;
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.policy-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(212, 175, 55, 0.05) 10px,
        rgba(212, 175, 55, 0.05) 20px
    );
}

.policy-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #d4af37;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
}

.policy-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto 15px;
    position: relative;
}

.last-updated {
    font-size: 0.9rem;
    color: #d4af37;
    font-style: italic;
    position: relative;
}

/* Policy Content */
.policy-content {
    background: #000000;
    color: #ffffff;
    padding: 80px 0;
    min-height: 100vh;
}

.policy-document {
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid #333;
}

.policy-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #333;
}

.policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.policy-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.policy-section h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 25px;
    background: linear-gradient(to bottom, #d4af37, #f4d03f);
    border-radius: 2px;
}

.policy-subsection {
    margin: 25px 0;
    padding: 20px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 8px;
    border-left: 3px solid #d4af37;
}

.policy-subsection h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #f4d03f;
    margin-bottom: 15px;
}

.policy-section p {
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1rem;
}

.policy-section ul {
    color: #cccccc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.policy-section li {
    margin-bottom: 10px;
    line-height: 1.6;
    position: relative;
}

.policy-section li::marker {
    color: #d4af37;
}

.policy-section li strong {
    color: #f4d03f;
    font-weight: 600;
}

.contact-details {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #000;
    padding: 25px;
    border-radius: 10px;
    margin-top: 20px;
}

.contact-details p {
    color: #000;
    margin-bottom: 8px;
    font-weight: 500;
}

.contact-details p:last-child {
    margin-bottom: 0;
}

.contact-details strong {
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .policy-header {
        padding: 60px 0 30px;
    }
    
    .policy-title {
        font-size: 2.2rem;
    }
    
    .policy-subtitle {
        font-size: 1rem;
    }
    
    .policy-content {
        padding: 40px 0;
    }
    
    .policy-document {
        padding: 25px;
        margin: 0 15px;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
    
    .policy-subsection h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .policy-header {
        padding: 40px 0 20px;
    }
    
    .policy-title {
        font-size: 1.8rem;
    }
    
    .policy-document {
        padding: 20px;
        margin: 0 10px;
    }
    
    .policy-section {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }
    
    .policy-section h2 {
        font-size: 1.3rem;
        padding-left: 15px;
    }
    
    .policy-section h2::before {
        width: 3px;
        height: 20px;
    }
    
    .policy-subsection {
        padding: 15px;
        margin: 20px 0;
    }
    
    .contact-details {
        padding: 20px;
    }
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Selection styling */
::selection {
    background: #d4af37;
    color: #000;
}

::-moz-selection {
    background: #d4af37;
    color: #000;
}

/* Custom scrollbar for webkit browsers */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #111;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #d4af37, #f4d03f);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #f4d03f, #d4af37);
}