/* Policies Page Styles */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 4rem 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Content Section */
.content-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

/* Cards */
.policy-card,
.terms-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    padding: 3rem;
    margin-bottom: 2rem;
}

/* Sections */
.policy-section,
.terms-section {
    margin-bottom: 3rem;
}

.policy-section:last-child,
.terms-section:last-child {
    margin-bottom: 0;
}

.policy-section h2,
.terms-section h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid var(--bg-light);
    padding-bottom: 1rem;
}

.policy-section h2 i,
.terms-section h2 i {
    color: var(--primary-light);
}

.policy-section p,
.terms-section p {
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Highlight & Important Boxes */
.highlight-box,
.important-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
    margin: 1.5rem 0;
}

.highlight-box h3,
.important-box h3 {
    color: #856404;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.highlight-box p,
.important-box p {
    color: #856404;
    margin-bottom: 0;
}

/* Lists */
.policy-section ul,
.terms-section ul {
    list-style: none;
    margin: 1.5rem 0;
    padding-left: 1rem;
}

.policy-section ul li,
.terms-section ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.policy-section ul li::before,
.terms-section ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 0.9rem;
    top: 4px;
}

/* Last Updated */
.last-updated {
    display: inline-block;
    background: var(--bg-light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.last-updated i {
    margin-right: 5px;
    color: var(--primary-color);
}

/* Contact Box */
.contact-box {
    background: var(--bg-light);
    border-radius: 10px;
    padding: 2rem;
    margin-top: 3rem;
    text-align: center;
}

.contact-box h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-btn.whatsapp {
    background: #25D366;
    color: white;
}

.contact-btn.email {
    background: var(--primary-color);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header {
        padding: 3rem 1rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .policy-card,
    .terms-card {
        padding: 1.5rem;
    }

    .content-section {
        padding: 0 1rem 3rem;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    .page-header {
        padding: 3rem 1rem;
    }
}

@media (max-width: 768px) {
    .contact-box h3, .terms-section h2, .policy-section h2 {
        font-size: 1.5rem;
    }
    .contact-box h3 {
        font-size: 1.5rem;
    }
    h3 {
        font-size: 1.3rem;
    }
}
