    <style>
        /* Additional styles for Gabung page */
        .gabung-hero {
            min-height: 100vh;
            background: linear-gradient(135deg, #c41e3a 0%, #1a1a1a 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 120px 40px 60px;
            position: relative;
            overflow: hidden;
        }
        
        .gabung-hero::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            background: repeating-linear-gradient(
                45deg,
                transparent,
                transparent 10px,
                rgba(255, 255, 255, 0.03) 10px,
                rgba(255, 255, 255, 0.03) 20px
            );
            animation: slide 20s linear infinite;
        }
        
        @keyframes slide {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }
        
        .gabung-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .gabung-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .gabung-left {
            color: white;
            animation: fadeInLeft 1s ease;
        }
        
        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .gabung-left h1 {
            font-size: 48px;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .gabung-left .highlight {
            color: #ffd700;
            font-weight: bold;
        }
        
        .gabung-left p {
            font-size: 20px;
            line-height: 1.8;
            margin-bottom: 30px;
            opacity: 0.95;
        }
        
        .benefits-list {
            list-style: none;
            padding: 0;
            margin: 30px 0;
        }
        
        .benefits-list li {
            padding: 15px 0;
            font-size: 18px;
            display: flex;
            align-items: center;
            gap: 15px;
            opacity: 0;
            animation: fadeInUp 0.5s ease forwards;
        }
        
        .benefits-list li:nth-child(1) { animation-delay: 0.2s; }
        .benefits-list li:nth-child(2) { animation-delay: 0.3s; }
        .benefits-list li:nth-child(3) { animation-delay: 0.4s; }
        .benefits-list li:nth-child(4) { animation-delay: 0.5s; }
        .benefits-list li:nth-child(5) { animation-delay: 0.6s; }
        .benefits-list li:nth-child(6) { animation-delay: 0.7s; }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .benefits-list li .icon {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
        }
        
        .gabung-right {
            background: white;
            border-radius: 20px;
            padding: 50px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            animation: fadeInRight 1s ease;
        }
        
        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .gabung-right h2 {
            font-size: 32px;
            color: #1a1a1a;
            margin-bottom: 15px;
        }
        
        .gabung-right .subtitle {
            color: #666;
            font-size: 16px;
            margin-bottom: 30px;
        }
        
        .requirement-card {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 20px;
            border-left: 4px solid #c41e3a;
        }
        
        .requirement-card h3 {
            font-size: 18px;
            color: #1a1a1a;
            margin-bottom: 10px;
        }
        
        .requirement-card ul {
            list-style: none;
            padding-left: 0;
        }
        
        .requirement-card li {
            padding: 5px 0;
            color: #666;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }
        
        .requirement-card li::before {
            content: '✓';
            color: #c41e3a;
            font-weight: bold;
            flex-shrink: 0;
        }
        
        .whatsapp-btn {
            display: block;
            width: 100%;
            padding: 18px 30px;
            background: #25D366;
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-size: 18px;
            font-weight: bold;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
            margin-top: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }
        
        .whatsapp-btn:hover {
            background: #20BD5A;
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
        }
        
        .whatsapp-btn .icon {
            font-size: 24px;
        }
        
        .info-section {
            background: white;
            padding: 80px 40px;
        }
        
        .info-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .info-card {
            background: #f8f9fa;
            padding: 40px 30px;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s ease;
            border-top: 4px solid #c41e3a;
        }
        
        .info-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }
        
        .info-card .icon {
            font-size: 48px;
            margin-bottom: 20px;
        }
        
        .info-card h3 {
            font-size: 22px;
            color: #1a1a1a;
            margin-bottom: 15px;
        }
        
        .info-card p {
            color: #666;
            line-height: 1.6;
        }
        
        .stats-section {
            background: linear-gradient(135deg, #1a1a1a 0%, #c41e3a 100%);
            color: white;
            padding: 80px 40px;
            text-align: center;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 50px auto 0;
        }
        
        .stat-item {
            padding: 30px;
        }
        
        .stat-number {
            font-size: 48px;
            font-weight: bold;
            margin-bottom: 10px;
        }
        
        .stat-label {
            font-size: 18px;
            opacity: 0.9;
        }
        
        .cta-section {
            background: white;
            padding: 80px 40px;
            text-align: center;
        }
        
        .cta-box {
            max-width: 800px;
            margin: 0 auto;
            background: linear-gradient(135deg, #c41e3a 0%, #1a1a1a 100%);
            padding: 60px 40px;
            border-radius: 20px;
            color: white;
        }
        
        .cta-box h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }
        
        .cta-box p {
            font-size: 18px;
            margin-bottom: 30px;
            opacity: 0.95;
        }
        
        @media (max-width: 768px) {
            .gabung-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .gabung-left h1 {
                font-size: 32px;
            }
            
            .gabung-left p {
                font-size: 16px;
            }
            
            .gabung-right {
                padding: 30px;
            }
            
            .gabung-right h2 {
                font-size: 24px;
            }
            
            .benefits-list li {
                font-size: 16px;
            }
        }
    </style>