/* Facilities Overview Page Styles */
.facilities-section {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.header-description {
    max-width: 800px;
    margin: 0 auto;
}

.header-description p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.key-highlights {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #3498db;
}

.highlight i {
    font-size: 1.2rem;
}

/* Section Styles */
section {
    margin-bottom: 4rem;
}

section h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

section h2 i {
    color: #3498db;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

/* Facility Card Styles */
.facility-card {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.facility-card i {
    font-size: 2rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.facility-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.facility-card p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.facility-card ul {
    list-style: none;
    padding: 0;
}

.facility-card ul li {
    color: #666;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.facility-card ul li::before {
    content: "•";
    color: #3498db;
    position: absolute;
    left: 0;
}

/* CTA Section Styles */
.cta-section {
    background: linear-gradient(135deg, #3498db, #2c3e50);
    border-radius: 10px;
    padding: 3rem;
    text-align: center;
    color: white;
    margin-top: 4rem;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: white;
    color: #3498db;
}

.btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .facilities-section {
        padding: 1rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .key-highlights {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .facilities-grid {
        grid-template-columns: 1fr;
    }

    .cta-section {
        padding: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}
