/* CSS for Policy & Static Pages */

.policy-container {
    background: #f8f9fa;
    min-height: 100vh;
    padding: 2rem 0;
}

.policy-header {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.policy-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin: 0;
    text-align: center;
}

.policy-subtitle {
    color: #666;
    font-size: 1rem;
    margin-top: 0.5rem;
    text-align: center;
}

/* Breadcrumb */
.breadcrumb-section {
    background: white;
    padding: 1rem 2rem;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.breadcrumb-link {
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.breadcrumb-link:hover {
    color: #dc3545;
}

.breadcrumb-separator {
    color: #999;
}

/* Policy Content */
.policy-content {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

/* Content Styling */
.policy-content h1,
.policy-content h2,
.policy-content h3,
.policy-content h4,
.policy-content h5,
.policy-content h6 {
    color: #333;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.policy-content h2 {
    font-size: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.policy-content h3 {
    font-size: 1.25rem;
    color: #dc3545;
}

.policy-content p {
    line-height: 1.8;
    color: #666;
    margin-bottom: 1rem;
}

.policy-content ul,
.policy-content ol {
    margin: 1rem 0;
    padding-left: 2rem;
    color: #666;
}

.policy-content li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.policy-content strong {
    color: #333;
    font-weight: 600;
}

.policy-content a {
    color: #dc3545;
    text-decoration: none;
    transition: all 0.3s;
}

.policy-content a:hover {
    text-decoration: underline;
}

/* Info Cards */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.info-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.info-text {
    color: #666;
    font-size: 0.95rem;
}

/* Table of Contents */
.table-of-contents {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.toc-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-item {
    margin-bottom: 0.5rem;
}

.toc-link {
    color: #666;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.toc-link:hover {
    color: #dc3545;
    padding-left: 0.5rem;
}

.toc-link:before {
    content: "▸";
    color: #dc3545;
}

/* Last Updated */
.last-updated {
    background: #e8f5e9;
    border-left: 4px solid #dc3545;
    padding: 1rem 1.5rem;
    border-radius: 0 10px 10px 0;
    margin: 2rem 0;
}

.last-updated-text {
    color: #2e7d32;
    font-size: 0.95rem;
    margin: 0;
}

/* Contact Section */
.contact-section {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    text-align: center;
}

.contact-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.contact-text {
    color: #666;
    margin-bottom: 1.5rem;
}

.contact-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: white #dc3545;
    color: #dc3545;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s;
}

.contact-btn:hover {
    background: #dc3545;
    transform: translateY(-2px);
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .policy-content {
        padding: 2rem 1.5rem;
    }
    
    .policy-title {
        font-size: 1.5rem;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
    }
}