/* Navbar */
.navbar {
    background-color: transparent;
    z-index: 1000;
}
.large {
    color: maroon;
}
.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color:#C70039;
    font-weight: bold;
}

.logo {
    height: 40px;
    margin-right: 10px;
}

.navbar-title {
    color: #C70039;
    font-size: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Reset and Body */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    text-align: center;
}

/* Banner Section */
.banner {
    padding: 30px;
    text-align: center;
    background-color: #f5f5f5;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    color: #00674F;
    margin-bottom: 20px;
}
