/* Custom Styles */

 .btn-cta {
            padding: 15px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        }
        
        .btn-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.3);
        }
        
        /* Features Card Hover Effect */
        .feature-card {
            transition: all 0.3s ease;
            border: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            height: 100%;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin: 0 auto 20px;
            font-size: 2rem;
        }
        

        /* Process Steps */
        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 20px;
        }
        

        .icon-part i {
            color: white !important;
        }

        /* FAQ Accordion Custom */
         .faq-section {
            padding: 80px 0;
        }

        .section-title {
            color: #2c3e50;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .section-subtitle {
            color: #6c757d;
            margin-bottom: 40px;
        }

        /* Styling Accordion Bootstrap 5 Custom */
        .custom-accordion .accordion-item {
            background-color: #ffffff;
            border: 1px solid rgba(0,0,0,.05);
            border-radius: 12px !important;
            margin-bottom: 16px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
            overflow: hidden; /* Supaya border-radius tombol mengikuti item */
            transition: all 0.3s ease;
        }

        .custom-accordion .accordion-item:hover {
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05);
            transform: translateY(-2px);
        }

        .custom-accordion .accordion-button {
            font-weight: 600;
            color: #2c3e50;
            padding: 20px 24px;
            font-size: 1.05rem;
            box-shadow: none !important;
            background-color: #ffffff;
        }

        /* Styling ketika accordion aktif/terbuka */
        .custom-accordion .accordion-button:not(.collapsed) {
            color: #0d6efd; /* Warna biru primary Bootstrap */
            background-color: #f0f7ff;
        }

        .custom-accordion .accordion-button::after {
            background-size: 1.2rem;
        }

        .custom-accordion .accordion-body {
            padding: 0 24px 24px 24px;
            color: #555;
            line-height: 1.6;
            background-color: #ffffff;
        }

        /* Styling List di dalam FAQ */
        .faq-list {
            padding-left: 1.2rem;
            margin-top: 10px;
            margin-bottom: 15px;
        }

        .faq-list li {
            margin-bottom: 8px;
        }

        .faq-list-icon {
            list-style: none;
            padding-left: 0;
        }

        .faq-list-icon li {
            position: relative;
            padding-left: 30px;
            margin-bottom: 12px;
        }

        .faq-list-icon li i {
            position: absolute;
            left: 0;
            top: 4px;
        }

        /* nav link */
        .navbar-nav .nav-link.active {
            color: #ff5722 !important; /* Warna oranye (Ubah sesuai tema web kamu) */
            font-weight: bold;
            border-bottom: 2px solid #ff5722;
        }
        
        /* Memberikan efek hover sedikit pada menu */
        .navbar-nav .nav-link:hover {
            color: #ff5722;
        }