/* -----------------------------------
COLOR PALETTE
Primary: #1F3C88
Accent: #5893D4
Light: #F5F7FA
Highlight: #F49D37
Dark Text: #1A1A1A
----------------------------------- */


/* Global Styles */
body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    background-color: #F5F7FA;
    color: #1A1A1A;
    line-height: 1.6;
}

/* Header */
header {
    background-color: #1F3C88;
    color: white;
    text-align: center;
    padding: 40px 20px;
}

header img {
    width: 150px;
    border-radius: 50%;
}

h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    margin-top: 0;
}

/* Sections */
section {
    padding: 40px 20px;
}

section:first-of-type {
    background-color: #5893D4;
    color: white;
}

section:last-of-type {
    background-color: #F49D37;
}

/* Lists */
ul {
    padding-left: 20px;
}

/* Footer */
footer {
    background-color: #1F3C88;
    color: white;
    text-align: center;
    padding: 30px 20px;
}

footer a {
    color: #F49D37;
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    text-decoration: underline;
}