:root {
    --bg-color: #FFFFFF;
    --card-bg: rgba(255, 255, 255, 0.9);
    --primary: #6366F1;
    --primary-dark: #4F46E5;
    --primary-glow: rgba(99, 102, 241, 0.05);
    --text-main: #000000;
    --text-muted: #6B7280;
    --glass-border: rgba(0, 0, 0, 0.08);
    --accent-gradient: linear-gradient(135deg, #6366F1 0%, #A855F7 100%);
    --font-family: 'Outfit', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-family);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

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

/* Background Animations */
.background-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    filter: blur(120px);
    opacity: 0.15; /* Even more subtle for light form */
}

.blob {
    position: absolute;
    border-radius: 50%;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -100px;
    right: -100px;
    animation: move 20s infinite alternate;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: #FFB800;
    bottom: -50px;
    left: -50px;
    animation: move 25s infinite alternate-reverse;
}

@keyframes move {
    from { transform: translate(0, 0); }
    to { transform: translate(100px, 100px); }
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

header {
    margin-bottom: 4rem;
}

.logo-container {
    margin-bottom: 1.5rem;
}

.main-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 22%; /* More consistent rounding for icons */
    background: white; /* Ensures rounded corners are visible for sharp icons */
    padding: 5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    filter: drop-shadow(0 0 15px var(--primary-glow));
    animation: pulse 4s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.05); opacity: 1; }
}

.logo {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 0.5rem;
}

.logo-accent {
    background: linear-gradient(135deg, #6366F1 0%, #A855F7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-weight: 300;
}

/* Action Cards */
.action-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.action-card {
    background: var(--card-bg);
    backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    width: 340px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.action-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.action-card .icon {
    width: 64px;
    height: 64px;
    background: var(--primary-glow);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.action-card .icon svg {
    width: 32px;
    height: 32px;
}

.action-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.action-card p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.btn-text {
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
}

.btn-text svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.action-card:hover .btn-text svg {
    transform: translateX(5px);
}

/* Content Pages */
.content-section {
    padding: 6rem 2rem;
}

.content-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.nav-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 2rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-back:hover {
    color: var(--primary);
}

.content-card h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.effective-date {
    color: var(--text-muted);
    display: block;
    font-weight: 300;
}

.content-footer {
    margin-top: 4rem;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
}

.content-body h2 {
    font-size: 1.75rem;
    margin: 2.5rem 0 1rem;
    color: var(--text-main);
}

.content-body p {
    margin-bottom: 1.5rem;
    color: var(--text-main);
    font-size: 1.1rem;
}

.content-body ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.content-body li {
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.contact-box {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.contact-email {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 500;
}

.bottom-nav {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: center;
}

.bottom-nav a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.bottom-nav a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

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

footer {
    text-align: center;
    margin-top: 2rem;
    color: var(--text-muted);
    font-size: 1rem;
}

.powered-by {
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.powered-by a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.powered-by a:hover {
    color: var(--primary-dark);
}

/* Mobile Responsive */
/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
        width: 100%;
    }

    .logo {
        font-size: 2.5rem;
    }

    .hero-section {
        padding: 2rem 1rem;
    }

    .action-grid {
        gap: 1rem;
        width: 100%;
    }

    .action-card {
        width: 100%;
        padding: 1.5rem;
        border-radius: 20px;
    }

    .content-section {
        padding: 0; /* Remove padding to allow full screen effect */
    }

    .content-section .container {
        padding: 0;
        max-width: 100%;
    }

    .content-card {
        padding: 3rem 1.5rem;
        border-radius: 0; /* Edge-to-edge for whole screen feel */
        border-left: none;
        border-right: none;
        margin: 0;
        width: 100%;
        min-height: 100vh; /* Ensure it covers full height */
        backdrop-filter: blur(20px); /* Stronger blur for premium feel */
    }

    .content-card h1 {
        font-size: 2rem;
    }

    .content-body h2 {
        font-size: 1.5rem;
        margin: 2rem 0 1rem;
    }

    .content-body p, .content-body li {
        font-size: 1.05rem;
    }

    footer {
        padding: 2rem 1rem;
    }

    .contact-box, .bottom-nav {
        margin-top: 2.5rem;
    }
}
