    <style>
        :root {
            --teal-primary: #15A59B;
            --teal-light: #47D4CC;
            --teal-dark: #0D7A70;
            --teal-gradient: linear-gradient(135deg, var(--teal-primary), var(--teal-dark));
        }
        
        * {
            font-family: 'Poppins', sans-serif;
        }
        
        body {
            background-color: #f8fafc;
            line-height: 1.6;
        }
        
        .hero-section {
            background: var(--teal-primary) !important;
            color: white !important;
            padding: 4rem 0 !important;
            position: relative !important;
            overflow: hidden !important;
            height: 40vh;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
            background-size: 20px 20px;
            animation: float 20s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(30px, -30px) rotate(120deg); }
            66% { transform: translate(-20px, 20px) rotate(240deg); }
        }
        
        .stats-section {
            background: white;
            border-bottom: 1px solid #e2e8f0;
            padding: 2rem 0;
        }
        
        .stat-item {
            text-align: center;
            padding: 1rem;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--teal-primary);
            display: block;
            margin-bottom: 0.5rem;
        }
        
        .stat-label {
            color: #64748b;
            font-size: 0.9rem;
        }
        
        .org-card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            height: 100%;
        }
        
        .org-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(21, 165, 155, 0.15);
        }
        
        .org-card.director {
            border-top: 4px solid var(--teal-primary);
        }
        
        .org-card.vice-director {
            border-top: 4px solid var(--teal-light);
        }
        
        .org-card.department-head {
            border-top: 4px solid #64748B;
        }
        
        .profile-img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid var(--teal-primary);
            margin: 0 auto 1rem;
        }
        
        .position-badge {
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 500;
            margin-bottom: 0.75rem;
        }
        
        .badge-director {
            background-color: var(--teal-primary);
            color: white;
        }
        
        .badge-vice-director {
            background-color: var(--teal-light);
            color: white;
        }
        
        .badge-department {
            background-color: #f1f5f9;
            color: #374151;
        }
        
        .position-title {
            color: var(--teal-dark);
            font-size: 0.95rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
        }
        
        .department-info {
            color: var(--teal-primary);
            font-size: 0.85rem;
            margin-bottom: 0.75rem;
        }
        
        .member-name {
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 0.5rem;
        }
        
        .member-nip {
            font-size: 0.8rem;
            color: #64748b;
        }
        
        .connection-line {
            width: 2px;
            background-color: var(--teal-primary);
            margin: 1rem auto;
        }
        
        .horizontal-line {
            height: 2px;
            background: linear-gradient(90deg, var(--teal-primary), var(--teal-light));
            position: absolute;
            top: -15px;
        }
        
        .vertical-line {
            width: 2px;
            height: 30px;
            background-color: var(--teal-primary);
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            top: -30px;
        }
        
        .support-unit-card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .support-unit-card:hover {
            box-shadow: 0 8px 20px rgba(0,0,0,0.12);
        }
        
        .unit-icon {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: var(--teal-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
        }
        
        .unit-icon i {
            font-size: 1.5rem;
            color: white;
        }
        
        .contact-section {
            background-color: #f8f9fa;
            padding: 2rem 0;
        }
        
        .contact-info {
            color: var(--teal-primary);
        }
        
        .contact-title {
            color: var(--teal-dark);
            font-weight: 600;
            margin-bottom: 0.25rem;
        }
        
        /* Modal Styles */
        .modal-header {
            background: var(--teal-gradient);
            color: white;
            border-bottom: none;
        }
        
        .modal-profile-img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid white;
            margin: 0 auto 1rem;
        }
        
        .modal-section {
            margin-bottom: 1.5rem;
        }
        
        .modal-section h6 {
            color: var(--teal-dark);
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .modal-contact-link {
            color: var(--teal-primary);
            text-decoration: none;
        }
        
        .modal-contact-link:hover {
            color: var(--teal-dark);
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .hero-section {
                padding: 2rem 0;
            }
            
            .hero-section h1 {
                font-size: 2rem;
            }
            
            .stat-number {
                font-size: 2rem;
            }
            
            .profile-img {
                width: 60px;
                height: 60px;
            }
            
            .org-card {
                margin-bottom: 1rem;
            }
        }

                /* Custom Carousel Styles */
        .applications-carousel {
            position: relative;
            margin: 3rem 0;
        }
        
        .carousel-inner {
            padding: 0 60px;
        }
        
        .carousel-item .row {
            margin: 0 -10px;
        }
        
        .carousel-item .col-lg-4 {
            padding: 0 10px;
        }
        
        .app-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 1px solid #e0e0e0;
            overflow: hidden;
            height: auto;
            display: flex;
            flex-direction: column;
            min-height: 300px;
            height: 100%;
        }
        
        .app-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(21, 165, 155, 0.12);
        }
        
        .app-header {
            padding: 1.25rem 1.25rem 0.75rem;
            flex-shrink: 0;
            position: relative;
        }
        
        .app-icon {
            width: 45px;
            height: 45px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 0.75rem;
            background: var(--teal-gradient);
            color: white;
            float: left;
            margin-right: 1rem;
        }
        
        .app-icon i {
            font-size: 1.4rem;
        }
        
        .app-title {
            color: var(--teal-dark);
            margin-bottom: 0.5rem;
            transition: color 0.3s ease;
            font-size: 1rem;
            font-weight: 600;
            line-height: 1.3;
        }
        
        .app-card:hover .app-title {
            color: var(--teal-primary);
        }
        
        .app-description {
            color: #666;
            line-height: 1.4;
            margin-bottom: 1rem;
            font-size: 0.85rem;
            clear: both;
        }
        
        .app-content {
            padding: 0 1.25rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .app-features {
            margin-bottom: 1.25rem;
        }
        
        .app-features h6 {
            color: var(--teal-dark);
            margin-bottom: 0.6rem;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.4rem 0.75rem;
        }
        
        .feature-item {
            display: flex;
            align-items: center;
            color: #666;
            font-size: 0.75rem;
            line-height: 1.2;
        }
        
        .feature-item::before {
            content: '';
            width: 4px;
            height: 4px;
            background: var(--teal-primary);
            border-radius: 50%;
            margin-right: 0.5rem;
            flex-shrink: 0;
        }
        
        .app-footer {
            padding: 0 1.25rem 1.25rem;
            margin-top: auto;
        }
        
        .status-badge {
            background: #e8f5e8;
            color: #2e7d32;
            padding: 0.15rem 0.5rem;
            border-radius: 12px;
            font-size: 0.6rem;
            display: inline-flex;
            align-items: center;
            position: absolute;
            top: 1rem;
            right: 1rem;
            font-weight: 500;
        }
        
        .status-badge::before {
            content: '';
            width: 4px;
            height: 4px;
            background: #4caf50;
            border-radius: 50%;
            margin-right: 0.3rem;
        }
        
        .app-actions {
            display: flex;
            gap: 0.5rem;
        }
        
        .btn-access {
            flex: 1;
            background: var(--teal-primary);
            border: none;
            color: white;
            padding: 0.5rem 0.75rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.4rem;
            font-size: 0.8rem;
            font-weight: 500;
        }
        
        .btn-access:hover {
            background: var(--teal-dark);
            color: white;
            transform: translateY(-1px);
        }
        
        .btn-info {
            background: transparent;
            border: 1.5px solid var(--teal-primary);
            color: var(--teal-primary);
            padding: 0.5rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            width: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .btn-info:hover {
            background: var(--teal-primary);
            color: white;
        }
        
        /* Custom Carousel Controls */
        .carousel-control-prev,
        .carousel-control-next {
            width: 50px;
            height: 50px;
            background: var(--teal-primary);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            opacity: 1;
            transition: all 0.3s ease;
            border: none;
        }
        
        .carousel-control-prev {
            left: 0;
        }
        
        .carousel-control-next {
            right: 0;
        }
        
        .carousel-control-prev:hover,
        .carousel-control-next:hover {
            background: var(--teal-dark);
            transform: translateY(-50%) scale(1.1);
        }
        
        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            width: 20px;
            height: 20px;
            background-size: 20px 20px;
        }
        
        /* Carousel Indicators */
        .carousel-indicators {
            margin-bottom: -3rem;
        }
        
        .carousel-indicators [data-bs-target] {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--teal-primary);
            opacity: 0.3;
            border: none;
            margin: 0 6px;
            transition: all 0.3s ease;
        }
        
        .carousel-indicators .active {
            opacity: 1;
            transform: scale(1.2);
        }
        
        .stats-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 4rem 0;
            margin: 3rem 0;
            border-radius: 20px;
        }
        
        .stats-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .stats-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(21, 165, 155, 0.15);
        }
        
        .stats-number {
            font-size: 2.5rem;
            color: var(--teal-primary);
            margin-bottom: 0.5rem;
        }
        
        .stats-label {
            color: #666;
        }
        
        .help-section {
            background: white;
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            margin: 3rem 0;
            position: relative;
            overflow: hidden;
        }
        
        .help-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 200px;
            height: 200px;
            background: linear-gradient(45deg, var(--teal-light), var(--teal-primary));
            border-radius: 50%;
            opacity: 0.1;
        }
        
        .help-card {
            background: var(--teal-gradient);
            color: white;
            border-radius: 15px;
            padding: 2rem;
            position: relative;
            overflow: hidden;
        }
        
        .help-card::before {
            content: '';
            position: absolute;
            top: -30%;
            left: -20%;
            width: 150px;
            height: 150px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            color: #666;
        }
        
        .contact-item i {
            color: var(--teal-primary);
            width: 20px;
            margin-right: 1rem;
        }
        
        @media (max-width: 768px) {
            .carousel-inner {
                padding: 0 40px;
            }
            
            .carousel-control-prev,
            .carousel-control-next {
                width: 40px;
                height: 40px;
            }
            
            .app-card {
                margin-bottom: 2rem;
                min-height: 280px;
            }
            
            .hero-section {
                padding: 2rem 0;
            }
            
            .stats-section {
                padding: 2rem 0;
            }
            
            .help-section {
                padding: 2rem;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
                gap: 0.3rem;
            }
            
            .app-icon {
                width: 40px;
                height: 40px;
                margin-bottom: 0.5rem;
            }
            
            .app-icon i {
                font-size: 1.2rem;
            }
        }
        
        @media (max-width: 576px) {
            .carousel-inner {
                padding: 0 30px;
            }
            
            .carousel-control-prev,
            .carousel-control-next {
                width: 35px;
                height: 35px;
            }
            
            .carousel-control-prev-icon,
            .carousel-control-next-icon {
                width: 15px;
                height: 15px;
                background-size: 15px 15px;
            }
        }
    </style>