@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@700&display=swap');

:root {
    --primary: #8B2E2E;
    /* Maroon from logo */
    --primary-light: #EC9E9E;
    /* Pink from logo */
    --accent: #f43f5e;
    --bg-color: #0f1011;
    /* Dark neutral background */
    --card-bg: rgba(30, 20, 20, 0.7);
    /* Hint of maroon in card */
    --text-color: #f8fafc;
    --text-muted: #94a3b8;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --gradient: linear-gradient(135deg, #8B2E2E 0%, #EC9E9E 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
}

/* Background Elements */
.bg-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.blob {
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--primary);
    filter: blur(120px);
    opacity: 0.15;
    border-radius: 50%;
}

.blob-1 {
    top: -100px;
    right: -100px;
}

.blob-2 {
    bottom: -100px;
    left: -100px;
    background: #a855f7;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 40px;
    width: auto;
    border-radius: 8px;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Header */
header {
    padding: 3rem 5% 1.5rem;
    text-align: center;
}

h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}


/* Main Content */
main {
    padding: 0 5% 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

section {
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section:hover {
    transform: translateY(-5px);
}

.policy-card {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    padding: 3.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.card-date {
    background: rgba(139, 46, 46, 0.1);
    color: var(--primary-light);
    font-size: 0.85rem;
    padding: 0.5rem 1.5rem;
    border-radius: 99px;
    display: inline-block;
    margin: 0 auto 2rem;
    border: 1px solid rgba(236, 158, 158, 0.2);
    text-align: center;
    width: fit-content;
    display: table;
    /* Helper for centering with margin auto */
}

h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-light);
}

h3 {
    font-size: 1.25rem;
    margin: 2rem 0 1rem;
    color: #e2e8f0;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

a {
    color: var(--primary-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary);
    text-decoration: underline;
}

ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-muted);
}

li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
}

.footer-nav {
    text-align: center;
    padding: 3rem 5%;
    border-top: 1px solid var(--glass-border);
    margin-top: 3rem;
    background: linear-gradient(to bottom, transparent, rgba(139, 46, 46, 0.05));
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
    letter-spacing: 0.02em;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    header {
        padding: 4rem 5% 2rem;
    }

    main {
        padding: 0 5% 4rem;
    }

    .policy-card {
        padding: 1.5rem;
    }
}