.beach-card {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 25px;
    position: relative;
    background-color: #ffffff;
}

.beach-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}


.beach-card img {
    object-fit: cover;
    min-height: 220px;
    max-height: 220px;
    width: 100%;
    border-bottom: 2px solid #007bff;
}


.beach-card .card-body {
    padding: 1.5rem;
    text-align: center;
}

.beach-card .card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0;
}

.region-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #FF632E;
    color: #000000;
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
    border-radius: 4px;
    font-weight: 600;
}

.beach-card .card-text {
    font-size: 1rem;
    color: #555555;
    margin: 15px 0;
}

.beach-card .btn-details {
    background-color: #0A4DAE;
    color: #ffffff;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.beach-card .btn-details:hover {
    background-color: #053275;
    transform: translateY(-3px);
}

.main h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
    border-bottom: 2px solid #007bff;
    font-size: 2rem;
}

.main h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background-color: #007bff;
}

