/* Policy & Contact Pages Styles */
.policy-page {
    background-color: #f8fafc;
    min-height: 100vh;
    padding: 40px 0;
}
.policy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 60px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.05);
}
.policy-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f1f5f9;
}
.policy-header h1 {
    font-size: 2.5rem;
    color: #0f172a;
    font-weight: 800;
    margin-bottom: 12px;
}
.policy-header p {
    color: #64748b;
    font-size: 1.1rem;
}
.policy-content {
    color: #334155;
    line-height: 1.8;
    font-size: 1.05rem;
}
.policy-content h2 {
    font-size: 1.6rem;
    color: #0f172a;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}
.policy-content h3 {
    font-size: 1.3rem;
    color: #1e293b;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}
.policy-content h4 {
    font-size: 1.15rem;
    color: #334155;
    margin-top: 25px;
    margin-bottom: 10px;
    font-weight: 600;
}
.policy-content h5 {
    font-size: 1.1rem;
    color: #334155;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}
.policy-content h6 {
    font-size: 1rem;
    color: #334155;
    margin-top: 15px;
    margin-bottom: 10px;
    font-weight: 600;
}
.policy-content p {
    margin-bottom: 20px;
}
.policy-content ul, .policy-content ol {
    margin-bottom: 25px;
    padding-left: 25px;
}
.policy-content li {
    margin-bottom: 10px;
}
.policy-content a {
    color: #2874f0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.policy-content a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* Contact Us Specific Styles */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.contact-card {
    background: #f8fafc;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s, box-shadow 0.3s;
}
.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}
.contact-card .icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #2874f0;
}
.contact-card h3 {
    font-size: 1.2rem;
    color: #0f172a;
    margin-bottom: 10px;
}
.contact-card a, .contact-card p {
    color: #475569;
    font-size: 1rem;
}
.contact-card a:hover {
    color: #2874f0;
}

@media (max-width: 768px) {
    .policy-container {
        padding: 30px 20px;
        margin: 20px 15px;
    }
    .policy-header h1 {
        font-size: 2rem;
    }
}
