:root {
    --primary-color: #a9b4ff;
    --primary-light: #b9c1f5;
    --primary-dark: #7988f1;
    --secondary-color: #f6f8fc;
    --text-color: #333333;
    --text-light: #666666;
    --text-lighter: #888888;
    --background-color: #ffffff;
    --card-color: #f9f9fd;
    --border-color: #e0e0e0;
    --shadow-color: rgba(0, 0, 0, 0.05);
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --border-radius: 12px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    padding: var(--spacing-md);
}

.container {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px var(--shadow-color);
    overflow: hidden;
}

header {
    background-color: var(--primary-color);
    color: white;
    padding: var(--spacing-lg) var(--spacing-lg) var(--spacing-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, var(--primary-light), transparent 60%);
    opacity: 0.4;
}
/*
.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.logo {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background-color: white;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--spacing-sm);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}*/

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.logo {
    height: 50px;
    border-radius: 12px;
    margin-right: var(--spacing-sm);
    object-fit: cover;
}

h1 {
    font-size: 28px;
    font-weight: 600;
    margin: 0;
}

h2 {
    font-size: 36px;
    margin-bottom: var(--spacing-sm);
    position: relative;
    z-index: 1;
}

.effective-date {
    font-size: 14px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

main {
    padding: var(--spacing-lg);
}

section {
    margin-bottom: var(--spacing-xl);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.5s forwards;
    animation-delay: calc(var(--index, 0) * 0.1s);
}

section:nth-child(1) { --index: 1; }
section:nth-child(2) { --index: 2; }
section:nth-child(3) { --index: 3; }
section:nth-child(4) { --index: 4; }
section:nth-child(5) { --index: 5; }
section:nth-child(6) { --index: 6; }
section:nth-child(7) { --index: 7; }
section:nth-child(8) { --index: 8; }
section:nth-child(9) { --index: 9; }
section:nth-child(10) { --index: 10; }

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

h3 {
    font-size: 24px;
    margin-bottom: var(--spacing-md);
    color: var(--primary-dark);
    position: relative;
    padding-bottom: var(--spacing-xs);
}

h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
}

h4 {
    font-size: 18px;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-dark);
}

p {
    margin-bottom: var(--spacing-md);
    color: var(--text-color);
}

ul {
    margin-bottom: var(--spacing-md);
    padding-left: var(--spacing-lg);
}

li {
    margin-bottom: var(--spacing-xs);
}

strong {
    font-weight: 600;
    color: var(--text-color);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.service-card {
    background-color: var(--card-color);
    border-radius: var(--border-radius);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 2px 8px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px var(--shadow-color);
}

.service-card h4 {
    margin-top: 0;
    margin-bottom: var(--spacing-xs);
}

.service-card p {
    margin-bottom: 0;
    color: var(--text-light);
}

.contact-info {
    background-color: var(--secondary-color);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    margin-top: var(--spacing-md);
}

.contact-info p {
    margin-bottom: var(--spacing-xs);
}

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

.white-text {
    color: white;
}

footer {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: var(--spacing-md);
    font-size: 14px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    body {
        padding: var(--spacing-xs);
    }
    
    .container {
        box-shadow: none;
    }
    
    header {
        padding: var(--spacing-md) var(--spacing-md) var(--spacing-lg);
    }
    
    h2 {
        font-size: 28px;
    }
    
    main {
        padding: var(--spacing-md);
    }
    
    h3 {
        font-size: 22px;
    }
    
    .service-card {
        padding: var(--spacing-sm);
    }
}

@media (max-width: 480px) {
    h2 {
        font-size: 24px;
    }
    
    h3 {
        font-size: 20px;
    }
    
    h4 {
        font-size: 16px;
    }
}