/* --- Variables CSS --- */
:root {
    --primary-color: #005A9C;
    --secondary-color: #FDB813;
    --dark-grey: #333333;
    --light-grey: #f4f4f4;
    --white: #ffffff;
    --success-color: #28a745;
    --danger-color: #dc3545;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-grey);
    overflow-x: hidden;
}

/* --- Typography --- */
h1, h2, h3 {
    font-weight: 700;
}

h1 {
    font-size: 3rem;
    color: var(--white);
}

h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
}

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animated-section {
    animation: fadeIn 1s ease-out forwards;
    opacity: 0;
}

/* --- Utility Classes --- */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.btn-primary {
    background: var(--secondary-color);
    border: none;
    color: var(--dark-grey);
    font-weight: 700;
    padding: 12px 28px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    background-color: #ffc107;
    color: var(--dark-grey);
}

section {
    padding: 60px 0;
}

/* --- Responsive Design --- */
@media(max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
}
