/* Policy Pages Styling */
.policy-content {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.policy-update {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-color);
}

.policy-update p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.policy-section {
    margin-bottom: 2.5rem;
}

.policy-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    border-bottom: 2px solid #eee;
    padding-bottom: 0.5rem;
    font-weight: 600;
}

.policy-section h4 {
    color: var(--secondary-color);
    margin: 1.5rem 0 1rem 0;
    font-weight: 500;
}

.policy-section ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.policy-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.policy-section ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.policy-section ol li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.policy-section p {
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #555;
}

.contact-details {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    margin-top: 1rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
}

.contact-details strong {
    color: var(--primary-color);
}

/* Table Styling for Refund Policy */
.table-bordered {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
    margin: 1rem 0;
}

.table-bordered th {
    background-color: var(--primary-color);
    color: white;
    font-weight: 500;
    border: none;
    padding: 1rem;
}

.table-bordered td {
    padding: 0.8rem 1rem;
    border-color: #e9ecef;
    vertical-align: top;
}

.table-bordered tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

.table-bordered tbody tr:hover {
    background-color: #e3f2fd;
}

/* Hero Section for Policy Pages */
.hero-section .hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-section .hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .policy-content {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .policy-section h3 {
        font-size: 1.3rem;
    }
    
    .policy-section h4 {
        font-size: 1.1rem;
    }
    
    .hero-section .hero-title {
        font-size: 2rem;
    }
    
    .hero-section .hero-subtitle {
        font-size: 1rem;
    }
    
    .table-responsive {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .policy-content {
        padding: 1rem;
        margin: 0.5rem;
    }
    
    .policy-section ul,
    .policy-section ol {
        padding-left: 1rem;
    }
    
    .contact-details {
        padding: 1rem;
    }
    
    .hero-section .hero-title {
        font-size: 1.8rem;
    }
}

/* Print Styles */
@media print {
    .hero-section,
    .footer,
    .navbar {
        display: none !important;
    }
    
    .policy-content {
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    .policy-section {
        page-break-inside: avoid;
    }
    
    .policy-section h3 {
        page-break-after: avoid;
    }
} 