/* Policy Pages Styles */
.policy-section {
    padding: 100px 5%;
    background-color: var(--light-color);
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 40px;
}

.policy-container h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: #777;
    margin-bottom: 40px;
    font-style: italic;
}

.policy-content {
    line-height: 1.8;
}

.policy-content h2 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin: 40px 0 20px;
    text-align: left;
}

.policy-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transform: none;
}

.policy-content h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin: 30px 0 15px;
}

.policy-content p {
    margin-bottom: 20px;
    color: #444;
}

.policy-content ul, 
.policy-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.policy-content li {
    margin-bottom: 10px;
    color: #444;
}

.policy-content a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.policy-content a:hover {
    color: var(--secondary-color);
}

.policy-content strong {
    font-weight: 700;
    color: var(--dark-color);
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .policy-section {
        padding: 80px 20px;
    }
    
    .policy-container {
        padding: 30px 20px;
    }
    
    .policy-container h1 {
        font-size: 2rem;
    }
    
    .policy-content h2 {
        font-size: 1.5rem;
    }
    
    .policy-content h3 {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 480px) {
    .policy-section {
        padding: 60px 15px;
    }
    
    .policy-container {
        padding: 25px 15px;
    }
    
    .policy-container h1 {
        font-size: 1.8rem;
    }
    
    .policy-content h2 {
        font-size: 1.3rem;
    }
    
    .policy-content h3 {
        font-size: 1.1rem;
    }
} 