:root {
    --primary-color: #4A6fa5;
    --accent-color: #8aa2c1;
    --text-color: #333333;
    --text-light: #666666;
    --bg-color: #ffffff;
    --card-bg: #ffffff;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInDown 0.8s ease-out;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    font-weight: 300;
}

main {
    background-color: var(--card-bg);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

section {
    margin-bottom: 40px;
}

section:last-child {
    margin-bottom: 0;
}

h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
    position: relative;
    padding-left: 15px;
}

h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background-color: var(--accent-color);
    border-radius: 2px;
}

p,
li {
    font-size: 1.05rem;
    color: var(--text-color);
}

ul {
    list-style-position: inside;
    padding-left: 10px;
}

li {
    margin-bottom: 8px;
    position: relative;
    list-style: none;
    padding-left: 25px;
}

li::before {
    content: '•';
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

strong {
    color: var(--primary-color);
}

footer {
    text-align: center;
    margin-top: 60px;
    color: var(--text-light);
    font-size: 0.9rem;
    animation: fadeIn 1s ease-out 1s backwards;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .container {
        padding: 20px;
    }

    header {
        margin-bottom: 40px;
    }

    h1 {
        font-size: 2.2rem;
    }

    main {
        padding: 25px;
    }

    body {
        font-size: 16px;
    }
}