.facility-card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.facility-hover-card {
    width: 280px;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
    cursor: pointer;
}

.facility-hover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.facility-card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.facility-card-content {
    padding: 15px;
    text-align: center;
    background-color: white;
}

.facility-card-title {
    font-family: 'Times New Roman', Times, serif;
    color: #2E0854;
    margin-bottom: 8px;
    font-size: 1.1rem;
    font-weight: bold;
}

.facility-card-description {
    font-family: 'Times New Roman', Times, serif;
    color: #8B4513; /* Brick brown */
    font-size: 0.9rem;
    line-height: 1.4;
}

.facility-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 128, 128, 0.9) 0%, rgba(75, 0, 130, 0.9) 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
    text-align: center;
}

.facility-hover-card:hover .facility-overlay {
    opacity: 1;
}

.facility-overlay-title {
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.facility-overlay-description {
    font-family: 'Times New Roman', Times, serif;
    font-size: 1rem;
    line-height: 1.5;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.facility-section-title {
    color: #2E0854;
    font-family: 'Times New Roman', Times, serif;
    text-align: center;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.facility-details-list {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin: 20px 0;
}

.facility-details-list h3 {
    color: #2E0854;
    font-family: 'Times New Roman', Times, serif;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.facility-details-list ul {
    list-style-type: none;
    padding-left: 0;
}

.facility-details-list li {
    font-family: 'Times New Roman', Times, serif;
    color: #4B0082; /* Indigo */
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.facility-details-list i {
    color: #008080;
    margin-right: 10px;
    margin-top: 5px;
}

.facility-details-list p {
    font-family: 'Times New Roman', Times, serif;
    color: #8B4513; /* Brick brown */
    margin-bottom: 15px;
}

.facility-specialized-service {
    background: linear-gradient(135deg, #4B0082 0%, #008080 100%);
    color: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
}

.facility-specialized-service h4 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.facility-specialized-service p {
    font-family: 'Times New Roman', Times, serif;
    font-size: 0.9rem;
    margin-bottom: 0;
}