/* General body padding when using a fixed navbar */
body {
    padding-top: 56px; /* Adjust this value if your navbar is taller */
}

/* Text formatting */
.formatted-text {
    line-height: 1.6;
    padding: 15px;
    text-align: justify;
}

/* List formatting */
.formatted-list li {
    margin-bottom: 10px;
}

/* Ensure card images are responsive */
.card-img-top {
    object-fit: cover;
    height: 200px; /* Adjust as needed */
}

/* Style for cookie consent banner */
#cookieConsent {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 20px;
    text-align: center;
    z-index: 1000;
}

/* Utility class to hide elements */
.d-none {
    display: none !important;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

/* Card Styling */
.card {
    border: none;
}

.card:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease-in-out;
}

/* Consistent text formatting */
.formatted-text {
    flex-grow: 1;
    text-align: justify;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 1rem;
    }

    .map-container {
        padding-bottom: 75%; /* Adjust aspect ratio for mobile */
    }
}
