body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #dff3f9;
    color: #333;
}
.banner {
    background-color: #1a237e;
    background-size: cover;
    color: rgb(12, 12, 12);
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    text-shadow: 2px 2px 10px rgba(81, 33, 33, 0.5);
}
.container {
    max-width: 1600px;
    margin: auto;
    padding: 20px;
}
.main-content {
    display: flex;
    gap: 20px;
}
.sidebar, .right-column {
    width: 25%;
    background: #ecf0f1;
    padding: 20px;
    border-radius: 8px;
}
.content {
    width: 80%;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}
.content img {
    width: 100%;
    border-radius: 8px;
}
.map-container {
    text-align: center;
    margin-top: 30px;
}
iframe {
    width: 100%;
    height: 450px;
    border-radius: 8px;
}
.header {
    background: #1e3a8a;
    color: white;
    text-align: center;
    padding: 40px 20px;
    font-weight: 600;
}
.header h1 {
    margin: 0;
    font-size: 2.5em;
}
.navbar {
    background-color: #4d8ca8;
    border-top: 2px solid #ced7cd;
    border-bottom: 3px solid #ced7cd;
    padding: 20px 20px 15px;
    text-align: center;
}
.navbar a {
    color: #1a237e;
    text-decoration: none;
    font-weight: 600;
    margin: 0 15px;
    padding: 10px 20px;
    border-radius: 5px;
    background: linear-gradient(145deg, #e0e0e0, #ffffff);
    box-shadow: 3px 3px 5px #b0b0b0, -3px -3px 5px #ffffff;
    border: 2px solid #1a237e;
    display: inline-block;
}
.navbar a:hover {
    background-color: #1a237e;
    color: white;
    box-shadow: inset 3px 3px 5px #0d1b6b, inset -3px -3px 5px #283593;
}
.imgtop {
    width: 100%;
    height: 250px;
}
.main-content {
    display: flex;
    margin-top: 20px;
    gap: 20px;
}
.sidebar,
.right-column,
.content {
    border: 1px solid #ccc;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.1);
}
.sidebar {
    width: 30%;
    background: #eef2ff;
    font-size: 1.1em;
}
.right-column {
    width: 30%;
    background: #e0e7ff;
    font-size: 1.1em;
}
.two-column {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}
.left-col {
    width: 30%;
    padding: 20px;
    border: 1px solid #ccc;
    background: white;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}
.right-col {
    width: 70%;
    padding: 20px;
    border: 1px solid #ccc;
    background: white;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}
.left-col img,
.right-col img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}
.sidebar-gallery {
    width: 350px;
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    margin: 20px auto;
}
.sidebar-gallery img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
}
.find-us-btn {
    display: inline-block;
    background-color: #1a237e;
    color: white;
    font-size: 14px;
    font-weight: 600;
    padding: 15px;
    border-radius: 8px;
    text-decoration: none;
    display: block;
    width: fit-content;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}
.footer {
    background: #1e3a8a;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 1em;
    margin-top: 20px;
}
@media (max-width: 768px) {
    .main-content {
        flex-direction: column;
    }

    .sidebar,
    .right-column,
    .content {
        width: 100%;
    }

    .carousel-container {
        height: 250px;
    }

    .carousel img {
        height: 250px;
    }
}