
    /* Brand Wrapper Styles - Same as detail/index.html */
    .brand-wrapper {
      background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 50%, #f0f7fa 100%);
      position: relative;
      overflow: hidden;
      width: 100vw;
      margin-left: calc(-50vw + 50%);
      padding-left: calc(50vw - 50%);
      padding-right: calc(50vw - 50%);
      padding: 80px 0;
      margin-top: 50px;
    }

    .brand-wrapper::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100"><path d="M0,50 Q250,0 500,50 T1000,50 V0 H0 Z" fill="%23ffffff" opacity="0.1"/></svg>') no-repeat;
      background-size: cover;
    }

    /* Brand Section Styles */
    .brand-carousel-section {
      background: transparent;
      padding: 0;
      position: relative;
      z-index: 2;
    }

    .brand-section-title {
      text-align: center;
      margin-bottom: 60px;
    }

    .brand-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: linear-gradient(45deg, #18689a, #8ec5fc);
      color: white;
      padding: 8px 20px;
      border-radius: 25px;
      font-size: 0.9rem;
      font-weight: 600;
      margin-bottom: 15px;
    }

    .brand-section-title h2 {
      font-size: 2.5rem;
      font-weight: 700;
      color: #2c3e50;
      line-height: 1.2;
      margin: 15px 0 20px 0;
    }

    .brand-highlight {
      background: linear-gradient(45deg, #18689a, #8ec5fc);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .brand-subtitle {
      font-size: 1.1rem;
      color: #64748b;
      margin: 0;
      font-weight: 500;
      max-width: 600px;
      margin: 0 auto;
    }

    /* Modern Brand Card Styles */
    .modern-brand-card {
      background: white;
      border-radius: 20px;
      padding: 30px;
      box-shadow: 0 10px 30px rgba(90, 24, 154, 0.1);
      border: 2px solid transparent;
      transition: all 0.4s ease;
      margin: 10px;
      position: relative;
      overflow: hidden;
    }

    .modern-brand-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(45deg, rgba(90, 24, 154, 0.05), rgba(142, 197, 252, 0.05));
      opacity: 0;
      transition: all 0.4s ease;
    }

    .modern-brand-card:hover::before {
      opacity: 1;
    }

    .modern-brand-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 50px rgba(90, 24, 154, 0.2);
      border-color: rgba(142, 197, 252, 0.3);
    }

    .modern-brand-card img {
      width: 100%;
      height: 120px;
      object-fit: contain;
      transition: all 0.4s ease;
      position: relative;
      z-index: 2;
    }

    .modern-brand-card:hover img {
      transform: scale(1.1);
    }

    /* Feature Section Styles - Konsisten dengan Brand Section */
    .feature-wrapper {
      background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 50%, #f0f7fa 100%);
      position: relative;
      overflow: hidden;
      width: 100vw;
      margin-left: calc(-50vw + 50%);
      padding-left: calc(50vw - 50%);
      padding-right: calc(50vw - 50%);
      padding: 80px 0;
      margin-top: 50px;
      margin-bottom: 50px;
    }

    .feature-wrapper::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100"><path d="M0,50 Q250,0 500,50 T1000,50 V0 H0 Z" fill="%23ffffff" opacity="0.1"/></svg>') no-repeat;
      background-size: cover;
    }

    .feature-section-title {
      text-align: center;
      margin-bottom: 60px;
      position: relative;
      z-index: 2;
    }

    .feature-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: linear-gradient(45deg, #18689a, #8ec5fc);
      color: white;
      padding: 8px 20px;
      border-radius: 25px;
      font-size: 0.9rem;
      font-weight: 600;
      margin-bottom: 15px;
    }

    .feature-section-title h2 {
      font-size: 2.5rem;
      font-weight: 700;
      color: #2c3e50;
      line-height: 1.2;
      margin: 15px 0 20px 0;
    }

    .feature-highlight {
      background: linear-gradient(45deg, #18689a, #8ec5fc);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .feature-subtitle {
      font-size: 1.1rem;
      color: #64748b;
      margin: 0;
      font-weight: 500;
      max-width: 600px;
      margin: 0 auto;
    }

    /* Modern Feature Card */
    .modern-feature-card {
      background: white;
      border-radius: 20px;
      padding: 40px 30px;
      box-shadow: 0 10px 30px rgba(90, 24, 154, 0.1);
      border: 2px solid transparent;
      transition: all 0.4s ease;
      margin-bottom: 30px;
      position: relative;
      overflow: hidden;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .modern-feature-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(45deg, rgba(90, 24, 154, 0.05), rgba(142, 197, 252, 0.05));
      opacity: 0;
      transition: all 0.4s ease;
    }

    .modern-feature-card:hover::before {
      opacity: 1;
    }

    .modern-feature-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 50px rgba(90, 24, 154, 0.2);
      border-color: rgba(142, 197, 252, 0.3);
    }

    .feature-icon-wrapper {
      margin-bottom: 25px;
      position: relative;
      z-index: 2;
    }

    .feature-icon {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto;
      position: relative;
      overflow: hidden;
    }

    .feature-icon.st-purple-box {
      background: linear-gradient(45deg, #18689a, #8ec5fc);
    }

    .feature-icon.st-green-box {
      background: linear-gradient(45deg, #28a745, #20c997);
    }

    .feature-content {
      position: relative;
      z-index: 2;
    }

    .feature-title {
      font-size: 1.4rem;
      font-weight: 700;
      color: #2c3e50;
      margin-bottom: 15px;
      line-height: 1.3;
    }

    .feature-text {
      font-size: 1rem;
      color: #64748b;
      line-height: 1.6;
      margin: 0;
      font-weight: 500;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .feature-wrapper {
        padding: 60px 0;
        margin-top: 30px;
        margin-bottom: 30px;
      }

      .feature-section-title h2 {
        font-size: 1.8rem;
      }

      .modern-feature-card {
        padding: 30px 25px;
        margin-bottom: 25px;
      }

      .feature-icon {
        width: 70px;
        height: 70px;
      }

      .feature-title {
        font-size: 1.2rem;
      }

      .feature-text {
        font-size: 0.95rem;
      }

      .brand-wrapper {
        padding: 60px 0;
        margin-top: 30px;
      }

      .brand-section-title h2 {
        font-size: 1.8rem;
      }

      .modern-brand-card {
        padding: 25px;
        margin: 8px;
      }

      .modern-brand-card img {
        height: 100px;
      }
    }

    .togglle-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background: #007bff;
      color: white;
      padding: 10px 15px;
      border-radius: 50px;
      cursor: pointer;
      z-index: 1000;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      font-size: 14px;
    }

    .flag-container {
      position: fixed;
      bottom: 70px;
      right: 20px;
      background: white;
      padding: 15px;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      z-index: 1000;
      display: none;
    }

    .flag-container button {
      margin: 5px;
      border: none;
      background: none;
      font-size: 24px;
      cursor: pointer;
      border-radius: 5px;
      padding: 5px;
    }

    .flag-container button:hover {
      background: #f0f0f0;
    }
