/* ========================================
   Privacy Policy Page Styles
   ======================================== */

.privacy-policy-page {
    padding-top: 120px;
    min-height: 100vh;
    background-color: #fff;
}

.page-header {
    text-align: center;
    padding: 60px 0 40px;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 60px;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}

.page-subtitle {
    font-size: 1rem;
    font-weight: 300;
    color: #666;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 80px;
}

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

.policy-intro {
    font-size: 1rem;
    line-height: 2;
    color: #333;
    margin-bottom: 30px;
    padding: 30px;
    background-color: #f9f9f9;
    border-left: 4px solid #333;
}

.policy-heading {
    font-size: 1.5rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e5e5e5;
}

.policy-text {
    font-size: 1rem;
    line-height: 2;
    color: #555;
    margin-bottom: 15px;
}

.policy-list {
    list-style: disc;
    padding-left: 30px;
    margin-top: 15px;
}

.policy-list li {
    font-size: 1rem;
    line-height: 2;
    color: #555;
    margin-bottom: 8px;
}

.contact-info {
    padding: 25px;
    background-color: #f9f9f9;
    border-radius: 4px;
    margin-top: 20px;
}

.contact-info p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 8px;
}

.contact-info strong {
    color: #222;
}

.policy-footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #e5e5e5;
    text-align: right;
}

.update-date {
    font-size: 0.9rem;
    color: #999;
}

.back-link {
    text-align: center;
    padding: 40px 0 80px;
}

.btn-back {
    display: inline-block;
    padding: 15px 50px;
    background-color: #333;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background-color: #555;
    transform: translateY(-2px);
    opacity: 1;
}

/* Footer Links */
.footer-links {
    margin: 15px 0;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .privacy-policy-page {
        padding-top: 80px;
    }
    
    .page-header {
        padding: 40px 0 30px;
        margin-bottom: 40px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 0.9rem;
    }
    
    .policy-content {
        padding-bottom: 60px;
    }
    
    .policy-section {
        margin-bottom: 40px;
    }
    
    .policy-heading {
        font-size: 1.3rem;
    }
    
    .policy-text,
    .policy-list li {
        font-size: 0.95rem;
    }
    
    .policy-intro {
        font-size: 0.95rem;
        padding: 20px;
    }
    
    .btn-back {
        padding: 12px 40px;
        font-size: 0.95rem;
    }
}
