.card-custom {
    border: none;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.card-custom:hover {
    transform: translateY(-5px);
}

.card-header-custom {
    background-color:  #134664;
    color: white;
    font-weight: bold;
    text-align: center;
    border-radius: 10px 10px 0 0;
}

.card-body-custom {
    padding: 20px;
}

.post-title {
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    font-size: 2rem;
    color: #333;
}

/* .container {
    padding: 40px 0;
} */

.map-img {
    max-width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.map-img:hover {
    transform: scale(1.05);
}

.btn-custom {
    background-color: #4CAF50;
    color: white;
    border-radius: 50px;
    padding: 10px 20px;
    transition: background-color 0.3s ease;
}

.btn-custom:hover {
    background-color: #45a049;
    color: white;
}