
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #111;
    color: #f0f0f0;
}
.hero {
    background: url('../images/background_pic1.png') no-repeat center center/cover;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-text h1 {
    font-size: 2.5rem;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 1rem;
}
.navbar {
    background-color: #222;
    padding: 1rem;
    text-align: center;
}
.navbar a {
    color: #e63946;
    margin: 0 1rem;
    text-decoration: none;
}
main {
    background: url('../images/backg_low.png') no-repeat center center/cover;
    padding: 60px 20px;
    color: white; /* Optional: ensures text is readable */
    min-height: 60vh; /* Makes sure there's enough height */
}
h2 {
    color: #e63946;
}
