/* Policy Pages (DMCA, Privacy, Terms) Specific Styles */

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #000 0%, #2a2a2a 100%);
    color: #FFD700;
    padding: 70px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 56px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 20px;
    color: #FFF;
}

/* Content Container */
.content-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Policy Section */
.policy-section {
    background-color: #2a2a2a;
    padding: 50px 40px;
    margin-bottom: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    border-left: 5px solid #FFD700;
}

.policy-section h2 {
    color: #FFD700;
    font-size: 32px;
    margin-bottom: 20px;
    margin-top: 30px;
}

.policy-section h2:first-child {
    margin-top: 0;
}

.policy-section h3 {
    color: #FFD700;
    font-size: 24px;
    margin-bottom: 15px;
    margin-top: 25px;
}

.policy-section p {
    color: #e0e0e0;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.policy-section ul {
    color: #e0e0e0;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    margin-left: 30px;
}

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

.policy-section a {
    color: #FFD700;
    text-decoration: none;
    border-bottom: 1px solid #FFD700;
}

.policy-section a:hover {
    color: #FFF;
    border-bottom-color: #FFF;
}

.contact-box {
    background-color: #333;
    padding: 25px;
    border-radius: 8px;
    border: 2px solid #FFD700;
    margin: 30px 0;
}

.contact-box strong {
    color: #FFD700;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .policy-section {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 38px;
    }
}
