/* Color Palette */
:root {
    --light-green: #8fa452;
	--dark-green: #3c5214;
	--dark-blue: #03045e;
    --blue-1: #023e8a;
    --blue-2: #0077b6;
    --blue-3: #0096c7;
    --blue-4: #00b4d8;
    --light-blue-1: #48cae4;
    --light-blue-2: #90e0ef;
    --light-blue-3: #ade8f4;
    --light-blue-4: #deefae;
}

/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--light-blue-4);
    color: var(--dark-blue);
}

header {
    background-color: var(--dark-blue);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo h1 {
    margin: 0;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 5px 10px;
    transition: background-color 0.3s ease;
}

nav ul li a:hover {
    background-color: var(--blue-1);
    border-radius: 5px;
}

.hero {
    background-color: var(--blue-2);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.hero h2 {
    margin: 0;
    font-size: 2.5em;
}

.hero p {
    font-size: 1.2em;
    margin: 20px 0;
}

.hero .cta {
    background-color: var(--blue-3);
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.hero .cta:hover {
    background-color: var(--blue-4);
}

.content {
    display: flex;
    justify-content: space-around;
    padding: 40px 20px;
}

.content article {
    background-color: var(--light-blue-2);
    padding: 20px;
    border-radius: 10px;
    max-width: 45%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.content article h3 {
    margin-top: 0;
}

footer {
    background-color: #c3d887;
    color: #000000;
    text-align: center;
    padding: 15px 20px;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
    }

    .content {
        flex-direction: column;
        align-items: center;
    }

    .content article {
        max-width: 90%;
        margin-bottom: 20px;
    }
}

