body {
    font-family: Arial, sans-serif;
}
.menu a:hover {
    color: #ffc815 !important;
}
main {
    margin-top: 80px;
}
.navbar {
    background-color: white;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    max-width: 100%;
}

.navbar-brand img {
    height: 70px; /* Adjust height as needed */
    width: 100; /* Maintain aspect ratio */
    margin-left : 10px;
}

.navbar-nav .nav-link {
    color: #585858;
    font-weight: 200;
    font-size: 1.5rem;
    margin-right: 40px;
    text-decoration: none;
    position: relative;
    padding-bottom: 5px;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #ffc815;
    transition: width 0.3s ease;
}
.navbar-nav .nav-link:hover::after {
    width: 100%;
}
.navbar-nav .nav-link:hover {
    color: #ffc815;
}

footer {
    background-color: #f9f9f9;
    padding: 20px 0;
    text-align: center;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    text-align: center;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 250px;
    margin-bottom: 10px;
}

.footer-contact {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    text-align: left;
    max-width: 300px;
}

.footer-contact p {
    margin: 5px 0;

}

.footer-social a {
    margin: 0 10px;
    display: inline-block;
}