:root {
            --primary-color: #2c3e50;
            --secondary-color: #8e44ad;
            --accent-color: #16a085;
            --light-color: #f8f9fa;
            --dark-color: #2c3e50;
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            line-height: 1.6;
        }
        h1, h2, h3, h4, h5 {
            font-weight: 600;
            color: var(--primary-color);
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
        }
        .nav-link {
            font-weight: 500;
            transition: var(--transition);
        }
        .nav-link:hover {
            color: var(--secondary-color) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(44, 62, 80, 0.85), rgba(44, 62, 80, 0.9)), url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 8rem 0;
            min-height: 90vh;
            display: flex;
            align-items: center;
        }
        .section-title {
            position: relative;
            margin-bottom: 3rem;
            padding-bottom: 1rem;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--accent-color);
        }
        .card {
            border: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: var(--transition);
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .card-icon {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }
        .facility-img {
            height: 220px;
            object-fit: cover;
            width: 100%;
        }
        .bg-light-accent {
            background-color: rgba(22, 160, 133, 0.05);
        }
        .btn-primary {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
            padding: 0.75rem 2rem;
            font-weight: 500;
        }
        .btn-primary:hover {
            background-color: #7d3fa0;
            border-color: #7d3fa0;
        }
        .footer {
            background-color: var(--primary-color);
            color: white;
        }
        .footer a {
            color: #ddd;
            text-decoration: none;
            transition: var(--transition);
        }
        .footer a:hover {
            color: white;
            text-decoration: underline;
        }
        .flink {
            display: inline-block;
            padding: 0.5rem 1rem;
            margin: 0.25rem;
            background: rgba(255,255,255,0.1);
            border-radius: 4px;
            transition: var(--transition);
            color: white !important;
            text-decoration: none !important;
        }
        .flink:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-2px);
            text-decoration: none !important;
        }
        .sticky-top {
            top: 0;
            z-index: 1020;
        }
        .accordion-button:not(.collapsed) {
            background-color: rgba(142, 68, 173, 0.1);
            color: var(--secondary-color);
        }
        .testimonial-img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--accent-color);
        }
        .gallery-item {
            overflow: hidden;
            border-radius: 8px;
            height: 250px;
        }
        .gallery-item img {
            height: 100%;
            width: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .gallery-item:hover img {
            transform: scale(1.05);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 5rem 0;
                min-height: 70vh;
                text-align: center;
            }
            .section-title::after {
                left: 50%;
                transform: translateX(-50%);
            }
        }
