:root {
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --accent-color: #2563eb;
    --border-color: #e2e8f0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: transparent;
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}



.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    position: relative;
    z-index: 1;
}

/* Header */
.header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1.2rem;
    animation: slideDown 0.6s ease-out;
}



.header h1 {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.effective-date {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Text Container */
.glass-card {
    background: transparent;
    padding: 1rem 0;
    animation: slideUp 0.8s ease-out;
}

.content p {
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    text-align: justify;
    line-height: 1.8;
    transition: color 0.3s ease;
}

.content p:hover {
    color: var(--text-primary);
}

.content h2 {
    color: var(--accent-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
    display: block;
    letter-spacing: 0.5px;
}

.contact-info {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.contact-info p {
    margin-bottom: 0.5rem;
}
.contact-info p:last-child {
    margin-bottom: 0;
}

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

/* Scrollbar for modern look */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Adjustments */
@media (max-width: 600px) {
    .glass-card {
        padding: 1rem 0;
    }
    .header h1 {
        font-size: 1.2rem;
    }
    .circle-1, .circle-2 {
        filter: blur(50px);
    }
}
