.section {
    margin-bottom: 20px !important;
    display: flex;
    align-items: flex-start;
}

.section img {
    width: 220px;
    height: auto;
    margin-right: 20px;
}

.section div {
    flex: 1;
}

.section {
    padding-bottom: 10px !important;
}

h2 {
    padding-top: 20px
}

#map-container {
    width: 100%;
    height: 400px;
    border-radius: 20px;
}

.popup-content img {
    width: 200px;
    height: auto;
}

.align-self-center {
    padding: 0px;
}

/*.left-border {
			border-left: 4px solid #076f92;
			padding-left: 35px;
		}
		*/

.button-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 15px;
    padding-right: 10px;
    padding-left: 10px;
}

.link-button {
    background: linear-gradient(135deg, #233c73, #2c5f9e);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: background 0.3s, box-shadow 0.3s;
}

.link-button a {
    color: white;
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
}

.link-button:hover {
    background: linear-gradient(135deg, #e24b4b, #e35e5e);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
}

.leaflet-popup-content {
    margin: 0px;
    max-width: 250px;
}

.bg-light {
    background-color: #ebebeb !important;
}

/* Image styling and hover effect */
.img-info {
    transition: transform 0.3s ease;
    width: 100px;
    margin-left: 10px; /* Adds space between image and text */
    border-radius: 5px;
}

/* Scale image on hover */
.img-info:hover {
    transform: scale(1.5);
    z-index: 1; /* Ensure the image appears above other elements */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section {
        padding-left: 10px;
        padding-right: 10px;
        flex-direction: column;
        align-items: center;
        text-align: left;
    }

        .section img {
            margin-right: 0;
            margin-bottom: 15px;
        }

    .left-border {
        border-left: none;
        padding-left: 0;
    }

    .button-container {
        grid-template-columns: 1fr !important;
    }
}
