
        :root {
            --primary: #006C70;
            --highlight: #149B9A;
            --black: #000000;
            --white: #FFFFFF;
            --bg: #F9FAFB;
            --title:#FFD700;
        }

        .hero-section {
            background: linear-gradient(135deg, var(--primary) 0%, var(--highlight) 100%);
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: rgba(255,255,255,0.05);
            border-radius: 50%;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 400px;
            height: 400px;
            background: rgba(255,255,255,0.03);
            border-radius: 50%;
        }

        .fade-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .card-hover:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 108, 112, 0.15);
        }

        .icon-pulse {
            transition: transform 0.3s ease;
        }

        .card-hover:hover .icon-pulse {
            transform: scale(1.1);
        }

        .nilai-card {
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .nilai-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--highlight);
            transform: scaleY(0);
            transition: transform 0.3s ease;
            transform-origin: bottom;
        }

        .nilai-card:hover::before {
            transform: scaleY(1);
        }

        .nilai-card:hover {
            transform: translateX(4px);
            box-shadow: 0 8px 24px rgba(0, 108, 112, 0.1);
        }

        .section-divider {
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--highlight));
            border-radius: 2px;
        }

        .scroll-indicator {
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-10px); }
            60% { transform: translateY(-5px); }
        }

        .counter-number {
            font-size: 3rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary), var(--highlight));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .parallax-dots {
            background-image: radial-gradient(circle, rgba(20,155,154,0.15) 1px, transparent 1px);
            background-size: 30px 30px;
        }

        /* Misi Carousel */
        .misi-icon {
            opacity: 0.4;
            color: rgba(255,255,255,0.5);
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
        }

        .misi-icon:hover {
            opacity: 0.6;
        }

        .misi-icon-active {
            opacity: 1;
            color: #FFFFFF;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
        }

        .misi-icons-row {
            overflow: hidden;
        }

        .misi-title {
            transition: none;
        }

        .misi-desc {
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        .misi-text-container {
            overflow: hidden;
        }