/* Custom CSS */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f8f9fa;
    padding: 20px;
}
h1 {
    color: #322C2B;
    font-weight: bold;
    text-align: left;
    margin-bottom: 30px;
}
.section-container {
    margin-bottom: 30px;
    text-align: center;
}
.section-title {
    background-color: #322C2B;
    color: #fff;
    padding: 15px 10px;
    margin-bottom: 0;
    text-transform: capitalize;
    font-size: 22px;
    font-weight: bold;
    border-radius: 5px;
}
.section-content {
    margin-top: 15px;
    padding: 10px;
}
/* Navigation link styles */
.navbar {
    background-color: #322C2B;
    padding: 10px 20px;
    border-radius: 5px;
}
.navbar-brand {
    padding: 15px 0;
    display: flex;
    align-items: center;
}
.navbar-brand img {
    height: 50px;
    margin-right: 10px;
}
.navbar-brand,
.nav-link {
    color: #ffffff !important;
    margin-right: 20px;
    font-weight: bold;
    text-transform: uppercase;
}
.navbar-brand:hover,
.nav-link:hover {
    color: #f8f9fa !important;
}
.navbar-nav .nav-item:last-child {
    margin-right: 0;
}
.more-info-link {
    color: #fff !important;
    text-decoration: none;
}
.more-info-link:hover {
    color: #f8f9fa !important;
    text-decoration: none;
}
/* Language Select Styling */
.custom-select {
    max-width: 100px;
    border-radius: 5px;
}
.custom-select option {
    background-color: #f8f9fa;
}
/* Advanced styling for the image */
.image-container {
    border: 1px solid #ccc;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}
.image-container:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.image-container img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}
.uniform-image {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.uniform-image:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}