/* =============================================
   POLICY PAGES CSS (Privacy Policy & Refund/Returns)
   File: assets/css/policy-pages.css
   - Standalone file, does not modify existing styles
   ============================================= */

/* Policy page content card */
.policy-page-content {
    border-radius: 8px;
    margin-bottom: 2rem;
}

/* Section spacing */
.policy-section {
    margin-bottom: 1.75rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #eee;
}

.policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Section headings */
.policy-heading {
    color: #dc3545;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 0.025em;
}

/* Policy lists */
.policy-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0.75rem;
}

.policy-list li {
    padding: 0.35rem 0 0.35rem 1.5rem;
    position: relative;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

.policy-list li::before {
    content: "\f054";
    font-family: "FontAwesome";
    font-size: 0.65rem;
    color: #dc3545;
    position: absolute;
    left: 0;
    top: 0.55rem;
}

/* Contact block */
.policy-contact {
    background: #f8f9fa;
    padding: 1rem 1.25rem;
    border-radius: 6px;
    border-left: 4px solid #dc3545;
    line-height: 2;
}

.policy-contact a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.policy-contact a:hover {
    color: #dc3545;
    text-decoration: underline;
}

/* Paragraph text inside policy */
.policy-page-content p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Footer policy links row */
.footer-policy-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 0.5rem;
}

.footer-policy-links a:hover {
    text-decoration: underline;
    color: #fff;
}

.footer-policy-links .footer-link-separator {
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .policy-page-content {
        padding: 1.25rem !important;
    }

    .policy-heading {
        font-size: 1rem;
    }

    .policy-list li {
        font-size: 0.9rem;
    }
}
