.privacy-section {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
    color: #ccc;
}

.privacy-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
}

.privacy-header h1 {
    color: #e6b800;
    margin-bottom: 10px;
}

.privacy-content {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    padding: 30px;
}

.policy-section {
    margin-bottom: 30px;
}

.policy-section h2 {
    color: #e6b800;
    margin-bottom: 15px;
    font-size: 1.4em;
}

.policy-section p {
    line-height: 1.6;
    margin-bottom: 15px;
}

.policy-section ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 15px;
}

.policy-section li {
    margin-bottom: 10px;
    line-height: 1.5;
}

.contact-list {
    list-style: none;
    padding-left: 0;
}

.contact-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.contact-list i {
    margin-right: 10px;
    color: #e6b800;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .privacy-section {
        padding: 15px;
    }

    .privacy-content {
        padding: 20px;
    }

    .policy-section h2 {
        font-size: 1.2em;
    }
} 