/* facilities.css */
.facilities {
    position: relative;
    height: 40vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 1);
}

.facilities::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/facilities.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 1;
}

.facilities-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.facilities-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 3.5rem;
    color: white;
    text-align: center;
    margin-bottom: 20px;
}

.facilities-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.8rem;
    color: white;
    font-style: italic;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .facilities-title {
        font-size: 2.5rem;
    }

    .facilities-subtitle {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .facilities-title {
        font-size: 2rem;
    }

    .facilities-subtitle {
        font-size: 1.2rem;
    }
}