/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(76, 175, 80, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo h1 {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(45deg, #4CAF50, #8BC34A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navigation {
    display: flex;
    gap: 2rem;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    background: rgba(76, 175, 80, 0.1);
}

.nav-link:hover {
    color: #4CAF50;
    background: rgba(76, 175, 80, 0.2);
}

/* Main Content */
.main-content {
    padding: 3rem 0;
}

.policy-content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(76, 175, 80, 0.1);
}

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(76, 175, 80, 0.1);
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #4CAF50, #8BC34A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.effective-date {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

/* Introduction Section */
.intro-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(76, 175, 80, 0.05);
    border-radius: 15px;
    border-left: 4px solid #4CAF50;
}

.intro-section p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #555;
}

.intro-section p:last-child {
    margin-bottom: 0;
}

/* Policy Sections */
.policy-section {
    margin-bottom: 3rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(76, 175, 80, 0.1);
}

.policy-section:last-child {
    border-bottom: none;
}

.policy-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #4CAF50;
    display: inline-block;
}

.policy-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #4CAF50;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.policy-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

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

.policy-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.policy-section li {
    margin-bottom: 0.5rem;
    color: #555;
    position: relative;
}

.policy-section li::marker {
    color: #4CAF50;
}

/* Subsections */
.subsection {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(76, 175, 80, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(76, 175, 80, 0.1);
}

/* Notes and Highlights */
.note {
    background: rgba(76, 175, 80, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    border-left: 4px solid #4CAF50;
}

.note p {
    margin: 0;
    color: #2E7D32;
}

/* Contact Information */
.contact-info {
    background: rgba(76, 175, 80, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.contact-info a {
    color: #4CAF50;
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Contact Details */
.contact-details {
    background: rgba(76, 175, 80, 0.05);
    padding: 2rem;
    border-radius: 15px;
    margin: 1.5rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    color: #4CAF50;
    width: 20px;
    font-size: 1.1rem;
}

.contact-item h4 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 0;
}

.contact-item a {
    color: #4CAF50;
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* FAQ Specific Styles */
.faq-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(76, 175, 80, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(76, 175, 80, 0.15);
    border-color: #4CAF50;
}

.faq-item h3 {
    color: #4CAF50;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(76, 175, 80, 0.2);
}

.faq-answer {
    color: #555;
    line-height: 1.7;
}

.faq-answer p {
    margin-bottom: 0.8rem;
}

.faq-answer ul {
    margin-left: 1.5rem;
    margin-top: 0.8rem;
}

.faq-answer li {
    margin-bottom: 0.6rem;
    color: #555;
}

.faq-answer li::marker {
    color: #4CAF50;
}

/* Footer */
.footer {
    background: rgba(255, 255, 255, 0.95);
    border-top: 1px solid rgba(76, 175, 80, 0.1);
    padding: 3rem 0 1rem;
    margin-top: 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #4CAF50, #8BC34A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.footer-section p {
    color: #666;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #4CAF50;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(76, 175, 80, 0.1);
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .policy-content {
        padding: 2rem 1.5rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .navigation {
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 2rem;
    }
    
    .policy-section h2 {
        font-size: 1.3rem;
    }
    
    .policy-content {
        padding: 1.5rem 1rem;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .contact-item i {
        align-self: center;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background: rgba(76, 175, 80, 0.3);
    color: #2E7D32;
}

/* Focus Styles */
a:focus,
button:focus {
    outline: 2px solid #4CAF50;
    outline-offset: 2px;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.policy-content {
    animation: fadeInUp 0.8s ease-out;
}
