        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f9f9f9;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .header {
            background-color: #0364c6;
            color: white;
            padding: 20px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }
        .header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
         .logo-wrapper {
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Arial', sans-serif;
      margin-top: 1px;
    }

    .logo-icon {
      font-size: 20px;
      color: #fff;
      margin-right: 10px;
    }

    .logo-texts {
      line-height: 1;
    }

    .logo-line {
      font-size: 20px;
      font-weight: bold;
      color: #fff;
      margin: 0;
    }

    .logo-line + .logo-line {
      margin-top: -4px;
    }
        .nav ul {
            display: flex;
            list-style: none;
        }
        .nav ul li {
            margin-left: 20px;
        }
        .nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        .nav ul li a:hover {
            color: #02dd3a;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .hero {
            background: linear-gradient(rgba(32, 27, 27, 0.7), rgba(5, 92, 185, 0.7)), url('/bg1.png');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 180px 0 100px;
            margin-top: 60px;
        }
        .hero h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }
        .form-group {
            margin-bottom: 20px;
            text-align: left;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: white;
        }
        .form-group input {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1rem;
            background-color: rgba(255, 255, 255, 0.9);
        }
        .toggle-custom-container {
            margin-bottom: 20px;
        }
        .toggle-custom-btn {
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            padding: 8px 0;
        }
        .toggle-custom-btn i {
            transition: transform 0.3s;
        }
        .toggle-custom-btn.active i {
            transform: rotate(180deg);
        }
        .custom-code-group {
            display: none;
            background-color: rgba(255, 255, 255, 0.1);
            padding: 15px;
            border-radius: 4px;
            margin-top: 10px;
            text-align: left;
        }
        .custom-code-group label {
            display: block;
            margin-bottom: 8px;
            color: white;
        }
        .custom-code-group input {
            width: 100%;
            padding: 10px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 0.9rem;
            background-color: rgba(255, 255, 255, 0.9);
        }
        .validation-message {
            color: #ff6b6b;
            font-size: 0.8rem;
            margin-top: 5px;
            display: none;
        }
        .custom-code-hint {
            font-size: 0.8rem;
            color: #ddd;
            margin-top: 8px;
        }
        #submitBtn {
            background-color: #0364c6;
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 5px;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            width: 20%;
            max-width: 300px;
            margin: 0 auto;
            transition: background-color 0.3s;
        }
        #submitBtn:hover {
            background-color: #037d22;
        }
        #submitBtn .spinner {
            display: none;
            width: 16px;
            height: 16px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top-color: white;
            animation: spin 1s ease-in-out infinite;
        }
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        .btn-loading .btn-text {
            display: none;
        }
        .btn-loading .spinner {
            display: inline-block;
        }
        .error {
            background-color: #ff6b6b;
            color: white;
            padding: 12px 15px;
            border-radius: 4px;
            margin: 20px 0;
            display: flex;
            align-items: center;
            gap: 8px;
            text-align: left;
        }
        .result {
            background-color: rgba(255, 255, 255, 0.9);
            padding: 20px;
            border-radius: 4px;
            margin-top: 20px;
            text-align: left;
            color: #333;
        }
        .result a {
            color: #0364c6;
            word-break: break-all;
            display: block;
            margin: 10px 0;
            font-size: 1.1rem;
        }
        .action-buttons {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 15px;
            flex-wrap: wrap;
            gap: 10px;
        }
        .copy-btn {
            background-color: #0364c6;
            color: white;
            border: none;
            padding: 8px 15px;
            border-radius: 4px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 0.9rem;
            transition: background-color 0.3s;
        }
        .copy-btn:hover {
            background-color: #1a252f;
        }
        .share-buttons {
            display: flex;
            gap: 8px;
            align-items: center; 
        }
        .share-btn {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.9rem;
            transition: transform 0.3s;
        }
        .share-btn:hover {
            transform: scale(1.1);
        }
        .whatsapp { background-color: #25D366; }
        .facebook { background-color: #3b5998; }
        .twitter { background-color: #1DA1F2; }
        .telegram { background-color: #0088cc; }
        .features {
            padding: 80px 0;
            background-color: white;
        }
        .features .container {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .feature-card {
            flex: 1;
            min-width: 300px;
            margin: 15px;
            padding: 30px;
            text-align: center;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }
        .feature-card:hover {
            transform: translateY(-10px);
        }
        .feature-card i {
            font-size: 3rem;
            color: #0364c6;
            margin-bottom: 20px;
        }
        .feature-card h3 {
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        .footer {
            background-color: #0364c6;
            color: white;
            padding: 30px 0;
            text-align: center;
        }
        .footer .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .social-links a {
            color: white;
            margin-left: 15px;
            font-size: 1.2rem;
            transition: color 0.3s;
        }
        .social-links a:hover {
            color: #02dd3a;
        }
        @media (max-width: 768px) {
            .nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: #0364c6;
                padding: 20px 0;
            }
            .nav.active {
                display: block;
            }
            .nav ul {
                flex-direction: column;
            }
            .nav ul li {
                margin: 10px 0;
                text-align: center;
            }
            .mobile-menu-btn {
                display: block;
            }
            .features .container {
                flex-direction: column;
            }
            .feature-card {
                margin: 15px 0;
            }
            .footer .container {
                flex-direction: column;
            }
            .social-links {
                margin-top: 20px;
            }
            .hero {
                padding: 150px 0 80px;
            }
            .hero h2 {
                font-size: 2rem;
            }
            .action-buttons {
                flex-direction: column;
                align-items: flex-start;
            }
        }
        
        
/* Tambahan CSS untuk halaman-halaman khusus */
        .content-section {
            padding: 60px 0;
            background-color: white;
        }
        
        .about-content, .features-detail, .contact-container {
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .about-content h3, .features-detail h3, .contact-info h3 {
            color: #0364c6;
            margin: 25px 0 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .about-content h3 i, .contact-info h3 i {
            color: #0364c6;
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .team-member {
            text-align: center;
            padding: 20px;
            border-radius: 5px;
            background-color: #f8f9fa;
            transition: transform 0.3s;
        }
        
        .team-member:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .member-avatar {
            width: 80px;
            height: 80px;
            margin: 0 auto 15px;
            background-color: #0364c6;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
        }
        
        .features-detail {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .feature-item {
            padding: 25px;
            border-radius: 5px;
            background-color: #f8f9fa;
            transition: all 0.3s;
        }
        
        .feature-item:hover {
            background-color: #0364c6;
            color: white;
        }
        
        .feature-item:hover h3, .feature-item:hover .feature-icon {
            color: white;
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: #0364c6;
            margin-bottom: 15px;
        }
        
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }
        
        .contact-info {
            padding: 20px;
        }
        
        .contact-form {
            padding: 20px;
            background-color: #f8f9fa;
            border-radius: 5px;
        }
        
        .social-contact {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #0364c6;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }
        
        .social-icon:hover {
            background-color: #0364c6;
            transform: scale(1.1);
        }
        
        textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1rem;
            font-family: inherit;
        }
        
        .submit-btn {
            background-color: #0364c6;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 5px;
            font-size: 1rem;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .submit-btn:hover {
            background-color: #037d22;
        }
        
        @media (max-width: 768px) {
            .contact-container {
                grid-template-columns: 1fr;
            }
            
            .features-detail {
                grid-template-columns: 1fr;
            }
        }
        
        
     /* FAQ Section Styles */
    .faq-section {
        padding: 80px 0;
        background-color: #f8f9fa;
    }
    
    .faq-section h2 {
        text-align: center;
        margin-bottom: 15px;
        color: #0364c6;
        font-size: 2rem;
    }
    
    .faq-section h2 i {
        color: #0364c6;
        margin-right: 10px;
    }
    
    .faq-section p {
        text-align: center;
        margin-bottom: 40px;
        color: #7f8c8d;
    }
    
    .faq-container {
        max-width: 800px;
        margin: 0 auto;
    }
    
    .faq-item {
        margin-bottom: 15px;
        border-radius: 5px;
        overflow: hidden;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    
    .faq-question {
        width: 100%;
        padding: 20px;
        text-align: left;
        background-color: white;
        border: none;
        outline: none;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 1rem;
        font-weight: 500;
        transition: background-color 0.3s;
    }
    
    .faq-question:hover {
        background-color: #f1f1f1;
    }
    
    .faq-question i {
        transition: transform 0.3s;
    }
    
    .faq-question.active i {
        transform: rotate(180deg);
    }
    
    .faq-answer {
        padding: 0 20px;
        max-height: 0;
        overflow: hidden;
        background-color: white;
        transition: max-height 0.3s ease-out, padding 0.3s ease;
    }
    
    .faq-answer p {
        text-align: left;
        padding: 0 0 20px 0;
        margin: 0;
        color: #34495e;
    }
    
    .faq-item.active .faq-answer {
        max-height: 200px;
        padding: 0 20px 10px 20px;
    }