:root {
            --primary-color: #72bf49;
            --primary-dark: #9859a9;
            --secondary-color: #44b9e9;
            --text-primary: #1e293b;
            --text-secondary: #64748b;
            --bg-light: #f8fafc;
            --bg-white: #ffffff;
            --border-color: #e2e8f0;
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }

        body {
            background: linear-gradient(135deg, #72bf49 0%, #44b9e9 50%, #9859a9 100%) !important;
            min-height: 100vh;
            position: relative;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 20% 30%, rgba(114, 191, 73, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(68, 185, 233, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(152, 89, 169, 0.2) 0%, transparent 50%);
            pointer-events: none;
            z-index: 0;
        }

        .main-wrapper {
            position: relative;
            z-index: 1;
            padding: 2rem 0 4rem;
        }

        .institution-hero {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            overflow: hidden;
            box-shadow: var(--shadow-xl);
            border: 1px solid rgba(255, 255, 255, 0.3);
            animation: fadeInUp 0.8s ease-out;
        }

        .hero-content {
            padding: 3rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            min-height: 500px;
        }

        .institution-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            width: fit-content;
            box-shadow: var(--shadow-md);
        }

        .institution-badge svg {
            width: 18px;
            height: 18px;
        }

        .institution-title {
            font-size: clamp(1.75rem, 4vw, 2.75rem);
            font-weight: 900;
            color: var(--text-primary);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            letter-spacing: -0.02em;
        }

        .institution-about {
            color: var(--text-secondary);
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 2rem;
            text-align: justify;
        }

        .institution-divider {
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-dark));
            border: none;
            border-radius: 2px;
            margin: 2rem 0;
            opacity: 0.3;
        }

        .institution-stats {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
            margin-top: 2rem;
        }

        .stat-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 1.5rem;
            background: var(--bg-light);
            border-radius: 12px;
            border: 2px solid var(--border-color);
            transition: all 0.3s ease;
        }

        .stat-item:hover {
            border-color: var(--primary-color);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .stat-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        .stat-icon svg {
            width: 20px;
            height: 20px;
        }

        .stat-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-primary);
            margin: 0;
            line-height: 1;
        }

        .stat-info p {
            font-size: 0.875rem;
            color: var(--text-secondary);
            margin: 0.25rem 0 0 0;
        }

        .hero-gallery {
            position: relative;
            min-height: 500px;
            background: linear-gradient(135deg, rgba(114, 191, 73, 0.1), rgba(68, 185, 233, 0.1));
        }

        #swiperDiv {
            width: 100%;
            height: 100%;
            min-height: 500px;
        }

        .swiper-slide {
            position: relative;
            overflow: hidden;
            width: 100%;
            height: 500px;
        }

        .swiper-slide::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.2) 100%);
        }

        @media (max-width: 991px) {
            .swiper-slide {
                height: 400px;
            }
        }

        @media (max-width: 576px) {
            .swiper-slide {
                height: 300px;
            }
        }

        .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background: white;
            opacity: 0.5;
            transition: all 0.3s ease;
        }

        .swiper-pagination-bullet-active {
            opacity: 1;
            width: 32px;
            border-radius: 6px;
            background: var(--primary-color);
        }

        .swiper-button-next,
        .swiper-button-prev {
            width: 48px;
            height: 48px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            box-shadow: var(--shadow-md);
            transition: all 0.3s ease;
        }

        .swiper-button-next:hover,
        .swiper-button-prev:hover {
            background: white;
            transform: scale(1.1);
        }

        .swiper-button-next::after,
        .swiper-button-prev::after {
            font-size: 20px;
            color: var(--primary-color);
            font-weight: 900;
        }

        .action-buttons {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }

        .action-btn {
            padding: 1rem 2rem;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            border: none;
            cursor: pointer;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            box-shadow: var(--shadow-md);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        .btn-outline {
            background: transparent;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
        }

        .btn-outline:hover {
            background: var(--primary-color);
            color: white;
        }

        .info-section {
            margin-top: 3rem;
            padding: 2.5rem;
            background: rgba(114, 191, 73, 0.05);
            border-radius: 16px;
            border: 2px solid rgba(114, 191, 73, 0.2);
        }

        .info-box {
            font-weight: 600;
            letter-spacing: 0.03rem;
            color: #05420b;
            font-size: 1rem;
            line-height: 1.6;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 991px) {
            .hero-content {
                padding: 2rem;
                min-height: auto;
            }

            .hero-gallery {
                min-height: 400px;
            }

            #swiperDiv {
                min-height: 400px;
            }

            .institution-title {
                font-size: 2rem;
            }

            .institution-stats {
                gap: 1rem;
            }

            .stat-item {
                flex: 1 1 calc(50% - 0.5rem);
                min-width: 150px;
            }

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

            .action-btn {
                width: 100%;
                justify-content: center;
            }
        }

        @media (max-width: 576px) {
            .hero-content {
                padding: 1.5rem;
            }

            .hero-gallery {
                min-height: 300px;
            }

            #swiperDiv {
                min-height: 300px;
            }

            .institution-title {
                font-size: 1.5rem;
            }

            .institution-about {
                font-size: 0.95rem;
            }

            .stat-item {
                flex: 1 1 100%;
            }

            .swiper-button-next,
            .swiper-button-prev {
                width: 40px;
                height: 40px;
            }

            .swiper-button-next::after,
            .swiper-button-prev::after {
                font-size: 16px;
            }
        }

        input::placeholder {
            color: #000000;
        }