/* General Body Style */
body {
    font-family: Arial, sans-serif;
    background-color: #fff8e1;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Header Style */
header {
    background-color: #b04a00;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}

/* Navigation Bar */
nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    background-color: #4a2d00;
    overflow: hidden;
    text-align: center;
}

nav ul li {
    display: inline;
    padding: 10px 20px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

nav ul li a:hover {
    color: #ff8c00;
}

/* Section Style */
section {
    margin: 20px;
    padding: 20px;
    background-color: #fff3e0;
    border-radius: 10px;
}

section h2 {
    color: #b04a00;
}

ul {
    list-style-type: square;
    margin-left: 20px;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background-color: #ff8c00;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.cta-button:hover {
    background-color: #b04a00;
}

/* Footer Style */
footer {
    background-color: #4a2d00;
    color: white;
    text-align: center;
    padding: 10px;
    position: relative;
    bottom: 0;
    width: 100%;
}

footer p {
    margin: 0;
}
