:root {
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #eff6ff;
    --secondary: #64748b;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --bg-gradient: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    --card-bg: rgba(255, 255, 255, 0.95);
    --border-radius: 24px;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background: var(--bg-gradient);
    background-attachment: fixed;
    min-height: 100vh;
    padding: 4rem 1rem;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.container {
    max-width: 800px;
    width: 100%;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    padding: 4rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.5);
    animation: fadeIn 0.8s ease-out;
}

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

header {
    text-align: center;
    margin-bottom: 4rem;
}

h1 {
    font-family: 'Outfit', sans-serif;
    color: var(--primary-dark);
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.app-name-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.effective-date {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
}

section {
    margin-bottom: 3.5rem;
}

h2 {
    font-family: 'Outfit', sans-serif;
    color: var(--primary-dark);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

h2::before {
    content: "";
    width: 8px;
    height: 24px;
    background: var(--primary);
    border-radius: 4px;
}

p {
    margin-bottom: 1.25rem;
    color: #475569;
}

ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

li {
    margin-bottom: 0.75rem;
    padding-left: 1.75rem;
    position: relative;
    color: #475569;
}

li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 800;
}

.highlight-box {
    background: var(--primary-light);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(37, 99, 235, 0.1);
    color: var(--primary-dark);
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.highlight-box i {
    font-size: 1.25rem;
}

.contact-card {
    background: #f1f5f9;
    padding: 2rem;
    border-radius: 20px;
    margin-top: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-item:hover {
    color: var(--primary);
}

.contact-item strong {
    min-width: 80px;
}

footer {
    margin-top: 5rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
}

@media (max-width: 640px) {
    body {
        padding: 1rem;
    }
    .container {
        padding: 2rem 1.5rem;
    }
    h1 {
        font-size: 2.25rem;
    }
}
