@import url('https://fonts.googleapis.com/css2?family=Maven+Pro:wght@400;500;700&display=swap');

/* General Styles */
body {
    font-family: 'Maven Pro', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #333;
}

/* Container */
.container {
    max-width: 800px;
    margin: 40px auto;
    padding: 30px;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

/* Header Styles */
header {
    border-bottom: 3px solid #fe3a20;
    padding-bottom: 15px;
    margin-bottom: 30px;
    text-align: center;
}

h1 {
    font-size: 2.4em;
    margin: 0;
    color: #1c154a;
    font-weight: bold;
}

p {
    margin: 10px 0;
}

/* Section Styles */
section {
    margin-bottom: 30px;
}

h2 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #1c154a;
    border-left: 4px solid #fe3a20;
    padding-left: 10px;
}

ul {
    list-style-type: disc;
    padding-left: 20px;
}

ul li {
    margin-bottom: 10px;
}

/* Footer Styles */
footer {
    border-top: 3px solid #fe3a20;
    padding-top: 15px;
    margin-top: 30px;
    text-align: center;
    font-size: 0.9em;
    color: #555;
}

a {
    color: #1c154a;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 600px) {
    .container {
        padding: 20px;
        margin: 20px;
    }

    h1 {
        font-size: 2.2em;
    }

    h2 {
        font-size: 1.5em;
    }
}