:root {
    --primary: #521c77;
    --secondary: #00ff8c;
    --text: #212529;
    --bg: #f8f9fa;
}

html,
body {
    height: 100%;
}

.contact-section {
    flex: 1;
    display: flex;
    align-items: center;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    display: flex;
    flex-direction: column;
}

ul {
    padding: 0;
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: #00ff8c;
}

.offcanvas .nav-link {
    font-size: 18px;
    font-weight: 500;
    color: #212529;
}

.offcanvas .nav-link:hover {
    color: #007bff;
}

.offcanvas-title {
    font-weight: 600;
}

.logo-img {
    max-width: 180px;
}

.banner-image {
    max-height: 400px;
    object-fit: cover;
    object-position: center;
}

.contact-section .map-container {
    height: 100%;
    min-height: 300px;
    background-color: #ddd;
}

/* Footer */
.footer {
    background: linear-gradient(to right, #2f184b, #521c77);
}

.footer h6 {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer a:hover {
    text-decoration: underline;
}

.offcanvas {
    background: #fff;
    box-shadow: -2px 0 12px rgba(0, 0, 0, 0.1);
}

/* Page Title */
.page-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
    margin: 0;
}

.banner {
    max-height: 400px;
    overflow: hidden;
    position: relative;
}

.banner img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    max-height: 400px;
}

@media (max-width: 767.98px) {
    .page-title {
        font-size: 30px;
        text-align: center;
    }
}