/* General Styling */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #ffffff; /* Set page background to white */
}
main {
    flex-grow: 1;
}

/* Hero Section Styling */
#hero {
    background-color: #ffffff; /* White background for hero section */
    color: #333333; /* Darker text for contrast */
    padding: 100px 0;
}
#hero .btn-primary {
    background-color: #4e73df;
    border-color: #4e73df;
}
#hero .btn-primary:hover {
    background-color: #375a7f;
    border-color: #375a7f;
}

/* Footer Styling */
footer {
    background-color: #333333;
    color: white;
    text-align: center;
    padding: 15px 0;
    font-size: 0.9rem;
}
footer a {
    text-decoration: none;
    color: #f8c146;
}
footer a:hover {
    color: #d39e00;
}