        /* Reset dan Base Styles */
        * {
            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: #f5f5f5;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .section {
            padding: 60px 0;
        }
        
        .section-title {
            font-size: 2rem;
            text-align: center;
            margin-bottom: 40px;
            color: #2c3e50;
            position: relative;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: #3259cd;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            border-radius: 4px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        /* Header Styles */
        .site-header {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        
        .logo img {
            height: 50px;
        }
        
        .main-nav {
            display: flex;
            gap: 30px;
        }
        
        .main-nav a {
            font-weight: 600;
            color: #2c3e50;
            padding: 5px 0;
            position: relative;
            transition: color 0.3s ease;
        }
        
        .main-nav a:hover {
            color: #3259cd;
        }
        
        .main-nav a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #3259cd;
            transition: width 0.3s ease;
        }
        
        .main-nav a:hover:after {
            width: 100%;
        }
        
        .header-cta {
            display: flex;
            gap: 15px;
        }
        
        .btn.login {
            background-color: transparent;
            border: 2px solid #3498db;
            color: #3498db;
        }
        
        .btn.login:hover {
            background-color: #3498db;
            color: white;
        }
        
        .btn.register {
            background-color: #3259cd;
            border: 2px solid #3259cd;
            color: white;
        }
        
        .btn.register:hover {
            background-color: #c0392b;
            border-color: #c0392b;
        }
        
        /* Hero Section */
        .hero {
            position: relative;
            overflow: hidden;
            height: 500px;
        }
        
        .hero img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5));
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: white;
            text-align: center;
            padding: 0 20px;
        }
        
        .hero-title {
            font-size: 3rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
        }
        
        .hero-subtitle {
            font-size: 1.2rem;
            max-width: 800px;
            margin-bottom: 30px;
        }
        
        .hero-cta {
            display: flex;
            gap: 20px;
        }
        
        .btn.hero-btn {
            padding: 15px 40px;
            font-size: 1.1rem;
        }
        
        /* Providers Section */
        .providers {
            background-color: white;
        }
        
        .providers h1 {
            font-size: 2.2rem;
            text-align: center;
            margin-bottom: 50px;
            color: #2c3e50;
        }
        
        .provider-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .provider-card {
            background-color: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: block;
        }
        
        .provider-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .provider-image {
            height: 180px;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            background-color: #f8f9fa;
        }
        
        .provider-image img {
            max-height: 100%;
            max-width: 100%;
            object-fit: contain;
        }
        
        .provider-name {
            padding: 20px;
            text-align: center;
            background-color: #2c3e50;
            color: white;
            font-weight: 600;
        }
        
        /* Markets Section */
        .markets {
            background-color: #2c3e50;
            color: white;
        }
        
        .markets .section-title {
            color: white;
        }
        
        .markets .section-title:after {
            background-color: #3259cd;
        }
        
        .market-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }
        
        .market-card {
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 40px 20px;
            text-align: center;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }
        
        .market-card:hover {
            background-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-5px);
        }
        
        .market-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            color: #3259cd;
        }
        
        .market-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }
        
        .market-desc {
            opacity: 0.8;
        }
        
        /* Content Section */
        .content {
            background-color: white;
        }
        
        .content-inner {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .content p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            line-height: 1.8;
            text-align: justify;
        }
        
        /* Features Section */
        .features {
            background-color: #f8f9fa;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .feature-card {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #3498db;
        }
        
        .feature-title {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: #2c3e50;
        }
        
        /* Support Section */
        .support {
            background-color: #3259cd;
            color: white;
            text-align: center;
        }
        
        .support-btn {
            display: inline-block;
            background-color: white;
            color: #3259cd;
            padding: 18px 50px;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 700;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .support-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }
        
        /* Footer */
        .site-footer {
            background-color: #2c3e50;
            color: #ecf0f1;
            text-align: center;
            padding: 30px 20px;
        }
        
        .h2,.h3 {
            text-align:center;
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .header-inner {
                flex-direction: column;
                gap: 20px;
            }
            
            .main-nav {
                flex-wrap: wrap;
                justify-content: center;
                gap: 15px;
            }
            
            .hero {
                height: 400px;
            }
            
            .hero-title {
                font-size: 2.2rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .hero-cta {
                flex-direction: column;
                width: 100%;
                max-width: 300px;
            }
            
            .btn.hero-btn {
                width: 100%;
                text-align: center;
            }
            
            .section-title {
                font-size: 1.6rem;
            }
            
        }
        
        @media (max-width: 480px) {
            .hero {
                height: 300px;
            }
            
            .hero-title {
                font-size: 1.8rem;
            }
            
            .section {
                padding: 40px 0;
            }
        }