body {
    background-color: #F1F3FF; /* Mist Lavender */
    color: #333333; /* Slate Gray */
    font-family: 'Lexend Deca', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
}

h1, h2, h3 {
    color: #073B4C; /* Midnight Navy */
    font-family: 'Baloo 2', sans-serif;
}

a {
    color: #0077B6; /* Ocean Blue */
    text-decoration: none;
}

a:hover {
    color: #EF476F; /* Coral Red */
}

.header {
    background-color: #0077B6; /* Ocean Blue */
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.tagline {
    font-size: 1.2em;
    margin-top: 10px;
}

.button {
    background-color: #FFD166; /* Golden Yellow */
    color: #073B4C; /* Midnight Navy */
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #EF476F; /* Coral Red */
}

.section {
    margin: 40px 0;
    padding: 20px;
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.footer {
    text-align: center;
    padding: 20px;
    background-color: #0077B6; /* Ocean Blue */
    color: #FFFFFF;
    border-radius: 8px;
    position: relative;
    bottom: 0;
    width: 100%;
}