:root {
            --igims-blue: #0a3d62;
            --igims-teal: #079992;
            --igims-light: #f8f9fa;
            --igims-accent: #e55039;
        }
        body {
            font-family: 'Inter', sans-serif;
            color: #333;
            line-height: 1.7;
        }
        h1, h2, h3, h4, h5 {
            font-family: 'Source Serif Pro', serif;
            font-weight: 700;
            color: var(--igims-blue);
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
        }
        .hero-section {
            background: linear-gradient(rgba(10, 61, 98, 0.85), rgba(7, 153, 146, 0.8)), url('https://images.unsplash.com/photo-1516549655669-df6654e447de?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 8rem 0;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 3rem;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background-color: var(--igims-teal);
        }
        .text-title-center:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .department-card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .department-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        .department-icon {
            font-size: 2.5rem;
            color: var(--igims-teal);
            margin-bottom: 1rem;
        }
        .stats-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--igims-blue);
            line-height: 1;
        }
        .stats-label {
            color: var(--igims-teal);
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }
        .btn-igims-primary {
            background-color: var(--igims-blue);
            color: white;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            border: 2px solid var(--igims-blue);
            transition: all 0.3s ease;
        }
        .btn-igims-primary:hover {
            background-color: transparent;
            color: var(--igims-blue);
        }
        .btn-igims-outline {
            background-color: transparent;
            color: var(--igims-blue);
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            border: 2px solid var(--igims-blue);
            transition: all 0.3s ease;
        }
        .btn-igims-outline:hover {
            background-color: var(--igims-blue);
            color: white;
        }
        .flink {
            display: inline-block;
            background-color: #f1f8ff;
            color: var(--igims-blue);
            padding: 0.5rem 1.2rem;
            margin: 0.3rem;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 500;
            border: 1px solid #d0e4ff;
            transition: all 0.3s ease;
        }
        .flink:hover {
            background-color: var(--igims-teal);
            color: white;
            border-color: var(--igims-teal);
            transform: translateY(-3px);
        }
        .news-card {
            border-left: 5px solid var(--igims-teal);
        }
        footer {
            background-color: #1a252f;
            color: #bdc3c7;
        }
        footer a {
            color: #ecf0f1;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        footer a:hover {
            color: var(--igims-teal);
        }
        .footer-bottom {
            background-color: #0c1a24;
            font-size: 0.9rem;
        }
        .contact-info-box {
            background-color: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            border-top: 5px solid var(--igims-teal);
        }
        .doctor-card img {
            width: 150px;
            height: 150px;
            object-fit: cover;
            border-radius: 50%;
            border: 5px solid #f1f8ff;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 5rem 0;
                text-align: center;
            }
            .section-title {
                text-align: center;
            }
            .section-title:after {
                left: 50%;
                transform: translateX(-50%);
            }
        }
