/* Privacy Policy Styles */
#privacy {
    background-color: #1a1a1a; /* Dark background to match site theme */
    color: #ffffff; /* White text */
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

#privacy h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    text-transform: uppercase;
    color: #ffffff;
}

#privacy h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #ffffff;
    border-bottom: 2px solid #fffefd; /* Orange accent line */
    padding-bottom: 0.5rem;
}

#privacy p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

#privacy strong {
    color: #fffffe; /* Orange for emphasis */
}

#privacy table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
    background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white background */
}

#privacy table th,
#privacy table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #ffffff;
    color: #ffffff;
}

#privacy table th {
    background-color: rgba(255, 102, 0, 0.2); /* Light orange background for headers */
    font-weight: bold;
}

#privacy table tbody tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.05); /* Alternating row colors */
}

#privacy .mt-4 {
    margin-top: 2rem !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #privacy h1 {
        font-size: 2rem;
    }
    
    #privacy h3 {
        font-size: 1.25rem;
    }
    
    #privacy table {
        font-size: 0.9rem;
    }
    
    #privacy table th,
    #privacy table td {
        padding: 0.75rem;
    }
}

