.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    /* Meningkatkan padding untuk ruang yang lebih baik */
    background: rgb(50, 1, 50);
    /* Warna latar belakang */
    color: white;
    /* Warna teks */
    position: sticky;
    top: 0;
    /* Menentukan posisi sticky */
    z-index: 1000;
    /* Agar header tetap di atas konten lainnya */
  }


  .header .logg {
    font-size: 1.2em;
    font-weight: 700;
  }

  .header nav {
    display: flex;
    gap: 30px;
    justify-content: center;
    /* Menempatkan menu di tengah */
    flex-grow: 1;
    /* Memungkinkan nav untuk mengambil ruang yang tersisa */
  }

  .header nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 1em;
  }

  .header nav a:hover {
    color: #ffdd57;
  }

  .contact-dropdown {
    position: relative;
    display: inline-block;
  }

  .contact-dropdown .dropdown-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1em;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .contact-dropdown .dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 8px;
  }

  .contact-dropdown .dropdown-content a {
    padding: 10px 10px;
    text-decoration: none;
    color: black;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s ease;
  }

  .contact-dropdown .dropdown-content a:hover {
    background: #f0f0f0;
  }

  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }

  .hamburger div {
    width: 25px;
    height: 3px;
    background: white;
    margin: 4px 0;
    transition: all 0.3s ease;
  }

  .hamburger i {
    font-size: 22px;
    /* Mengubah ukuran ikon hamburger */
    color: white;
    /* Mengubah warna ikon */
  }

  .mobile-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    background: white;
    color: black;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    z-index: 1;
    animation: slideIn 0.3s ease-out;
  }

  .header img {
    width: 150px;
    height: auto;
  }

  .mobile-nav a {
    padding: 15px 20px;
    text-decoration: none;
    color: black;
    border-bottom: 1px solid #ddd;
    transition: background 0.3s ease;
  }

  .mobile-nav a:hover {
    background: #f0f0f0;
  }

  .mobile-nav a:last-child {
    border-bottom: none;
  }

  .mobile-nav .contact-dropdown .dropdown-content a {
    padding: 15px 20px;
  }

  @keyframes slideIn {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @media (max-width: 768px) {
    .header nav {
      display: none;
    }

    .hamburger {
      display: flex;
    }

    .mobile-nav.active {
      display: flex;
    }

    .hamburger.active div:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active div:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active div:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
    }

    .contact-dropdown .dropdown-content {
      position: static;
      box-shadow: none;
      border-radius: 0;
    }

    .contact-dropdown .dropdown-btn {
      background: none;
      border: none;
      color: rgb(0, 0, 0);
      font-size: 1em;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 5px;
    }
  }

  @media (min-width: 769px) {
    .hamburg {
      display: none;
    }
  }

  .swiper {
    width: 100%;
    height: auto;
  }

  .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    color: white;
  }

  .swiper-slide img {
    width: 100%;
    height: auto;
  }

  @media (max-width: 768px) {
    .swiper-slide img.desktop {
      display: none;
    }

    .swiper-slide img.mobile {
      display: block;
    }

    .header img {
      width: 130px;
      height: auto;
    }

    .header .logg {
      font-size: 1.2em;
      font-weight: 700;
      margin-right: auto;
      /* Memisahkan logo dari menu */
      margin-left: -5px;
      /* Menggeser logo ke kiri */
    }

    .iconnn {
      margin-left: 10px;
      /* Jarak dari hamburger */
    }
  }

  @media (min-width: 769px) {
    .swiper-slide img.mobile {
      display: none;
    }

    .swiper-slide img.desktop {
      display: block;
    }
  }

  .swiper {
    overflow: hidden;
  }

  .swiper-wrapper {
    display: flex;
    transition: transform 0.3s ease;
  }

  .swiper-slide {
    flex: 0 0 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #eee;
  }

  .swiper-button-next,
  .swiper-button-prev {
    color: #fff;
  }
  .iconnn {
    font-size: 1em;
    display: flex;
    gap: 10px;
    margin-left: auto;
  }

  .custom-button-group {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .custom-button-group button {
    display: flex;
    align-items: center;
    padding: 6px 10px;
    border: none;
    border-radius: 9px;
    cursor: pointer;
    background-color: rgb(81, 5, 88);
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    font-size: 1em;
  }

  .custom-button-group button:hover {
    background-color: rgb(100, 20, 100);
    /* Ubah warna saat hover */
    transform: translateY(-2px);
    /* Efek mengangkat saat hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    /* Bayangan saat hover */
  }

  .custom-button-group button:active {
    transform: translateY(0);
    /* Kembali ke posisi semula saat diklik */
    box-shadow: none;
    /* Hilangkan bayangan saat diklik */
  }

  .custom-location-button {
    color: black;
    justify-content: center;
  }

  .custom-location-button i {
    margin-right: 8px;
  }

  .custom-subscribe-button {
    color: black;
  }

  .custom-whatsapp-button {
    color: white;
    justify-content: center;
  }

  .custom-whatsapp-button i {
    margin-right: 8px;
  }

  @media (max-width: 956px) {
    .iconnn {
      flex-direction: row;
      align-items: center;
      gap: 8px;
      margin-right: 10px;
      display: inline-block;
    }

    .custom-location-button span {
      display: none;
    }

    .custom-whatsapp-button span {
      display: none;
    }

    .custom-whatsapp-button i {
      margin-right: -1px;
    }

    .custom-location-button i {
      margin-right: 1px;
    }
  }
  .custom-button-group a {
display: flex;
align-items: center;
padding: 6px 10px;
border: none;
border-radius: 9px;
cursor: pointer;
background-color: rgb(81, 5, 88);
color: white;
text-decoration: none;
font-weight: 500;
transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
font-size: 1em;
}

.custom-button-group a:hover {
background-color: rgb(100, 20, 100);
transform: translateY(-2px);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.custom-button-group a:active {
transform: translateY(0);
box-shadow: none;
}
body {
    background-color: white;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px;
}
.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}
.text-section {
    flex: 1;
    padding: 16px;
}
.text-section h1 {
    font-size: 35px;
    font-weight: bold;
    color: black;
}
.text-section h1 span {
    color: #640580;
}
.text-section p {
    font-size: 20px;
    color: #4B5563;
    margin-top: 16px;
}
.text-section p span {
    color: #2563EB;
}
.text-section button {
    margin-top: 24px;
    background-color:  rgb(81, 5, 88);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    font-size: 15px;
    font-weight: bold;
    position: relative;
    overflow: hidden;
}

.text-section button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.15);
    transition: all 0.75s;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
}

.text-section button:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.text-section button:hover {
    background-color: #8B5CF6;
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.text-section button:active {
    background-color: #4C1D95;
    transform: scale(0.95);
}

.text-section button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(107, 33, 168, 0.5);
}
.image-section {
    flex: 1;
    padding: 16px;
}
.image-section img {
    width: 100%;
    max-width: 600px;
}
@media (min-width: 768px) {
    .content {
        flex-direction: row;
    }
}

.containerrr {
  background-color: #fbbf24;
  border-radius: 0.5rem;
  text-align: center;
  padding: 2rem;
  overflow-x: auto;
  margin: auto;
  margin-top: 90px;
}

.headerrrr {
  text-align: center;
  margin-bottom: 2rem;
}

.headerrr h1 {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0;
}

.headerrrr p {
  color: #4b5563;
  margin: 0;
}

.steps {
  display: flex;
  justify-content: space-between;
}

.step {
  text-align: center;
  flex: 0 0 auto;
  width: 100%;
  max-width: 20rem;
  margin: 0 1rem;
}

.step-icon {
  background-color: #fef3c7;
  border-radius: 50%;
  padding: 1rem;
  display: inline-block;
  margin-bottom: 1rem;
}

.step-icon i {
  color: #d97706;
  font-size: 2rem;
}

.step h2 {
  font-size: 1.125rem;
  font-weight: bold;
  margin: 0;
}

.step p {
  color: #4b5563;
  margin: 0;
}

@media (max-width: 768px) {
  .steps {
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .step {
    margin: 0 0.5rem;
  }
}

    /* Global Styles */
    body {
      font-family: 'Roboto', sans-serif;
      margin: 0;
      padding: 0;
  }

  /* Header Styles */
  .myrepublic-header {
      background-color: rgb(78, 2, 78);
      color: white;
      padding: 20px;
      text-align: left;
      position: relative;
      margin-top: 30px; /* Mengangkat header sedikit ke atas */
      border-radius: 18px; /* Sudut yang lebih lembut */
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Bayangan untuk kedalaman */
  }

  .myrepublic-header h1 {
      margin: 10px 0;
      font-size: 2em;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); /* Bayangan teks */
      transition: color 0.3s ease; /* Transisi halus untuk perubahan warna */
  }

  .myrepublic-header h1:hover {
      color: #ffcc00; /* Warna saat hover */
  }

  .myrepublic-header h2 {
      margin: 5px 0;
      font-size: 1em; /* Ukuran font yang lebih kecil untuk h2 */
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); /* Bayangan teks */
  }

  .myrepublic-header p {
      margin: 5px 0;
      font-size: 0.9em; /* Ukuran font yang lebih besar untuk p */
      transition: color 0.3s ease; /* Transisi halus untuk perubahan warna */
  }

  .myrepublic-header p:hover {
      color: #ffcc00; /* Warna saat hover */
  }

  /* Container Styles */
  .myrepublic-container {
      padding: 20px;
      position: relative;
      top: -30px;
  }

  /* Flex Container Styles */
  .myrepublic-flex-container {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
  }

  .myrepublic-map, .myrepublic-contact {
      flex: 1;
      min-width: 300px;
  }

  /* Contact Styles */
  .myrepublic-contact {
      background-color: #f8f9fa;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }

  .myrepublic-contact h3 {
      margin-top: 0;
  }

  .myrepublic-contact p {
      margin: 10px 0;
  }

  .myrepublic-contact .myrepublic-phone {
      display: flex;
      align-items: center;
      margin-top: 20px;
  }

  .myrepublic-contact .myrepublic-phone i {
      color: #007bff;
      margin-right: 10px;
  }

  /* Responsive Styles */
  @media (max-width: 768px) {
      .myrepublic-header h1 {
          font-size: 2em;
      }

      .myrepublic-contact {
          padding: 10px;
      }
  }
  .myrepublic-map {
      border-radius: 15px; /* Sudut yang lebih lembut */
      overflow: hidden; /* Menyembunyikan bagian yang melampaui sudut */
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Bayangan untuk kedalaman */
  }

  .sinarmas-custom-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-top: 1px solid #d1d5db;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
  }
  
  .sinarmas-custom-footer .sinarmas-custom-left,
  .sinarmas-custom-footer .sinarmas-custom-center,
  .sinarmas-custom-footer .sinarmas-custom-master {
    display: flex;
    align-items: center;
  }
  
  .sinarmas-custom-footer .sinarmas-custom-left p,
  .sinarmas-custom-footer .sinarmas-custom-center p,
  .sinarmas-custom-footer .sinarmas-custom-master {
    margin: 0;
    font-size: 14px;
    color: #4a4a4a;
  }
  
  .sinarmas-custom-footer .sinarmas-custom-left img {
    margin-left: 5px;
    width: 122px;
    height: 32px;
  }
  
  .sinarmas-custom-footer .sinarmas-custom-center p,
  .sinarmas-custom-footer .sinarmas-custom-master {
    margin-left: 20px;
    white-space: nowrap;
  }
  
  .sinarmas-custom-footer .sinarmas-custom-master a {
    color: blue;
    text-decoration: none;
    margin-left: 5px;
  }
  
  @media (max-width: 768px) {
    .sinarmas-custom-footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
  
    .sinarmas-custom-footer .sinarmas-custom-center p,
    .sinarmas-custom-footer .sinarmas-custom-master {
        margin-left: 0;
        margin-top: 10px;
    }
  }
  
  
  .sinarmas-footer-widget {
    max-width: 250px;
  }
  
  .sinarmas-footer-widget h6 {
    color: purple;
    font-size: 20px;
    margin-bottom: 20px;
  }
  
  footer {
    position: relative;
    width: 100%;
    height: auto;
    padding-top: 80px;
    background-color: #ffffff;
  }
  
  .sinarmas-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 12px;
  }
  
  .sinarmas-wrapper {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .sinarmas-wrapper .sinarmas-footer-widget {
    width: calc(20% - 30px);
    margin: 0 15px 50px;
    padding: 0 12px;
  }
  
  .sinarmas-wrapper .sinarmas-footer-widget:nth-child(1) {
    width: calc(40% - 50px);
    margin-right: 15px;
  }
  
  .sinarmas-wrapper .sinarmas-footer-widget .sinarmas-logo {
    margin-bottom: 30px;
    vertical-align: middle;
  }
  
  .sinarmas-wrapper .sinarmas-footer-widget p {
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 24px;
  }
  
  .sinarmas-wrapper .sinarmas-footer-widget .sinarmas-socials {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  
  .sinarmas-wrapper .sinarmas-footer-widget .sinarmas-socials li {
    list-style: none;
  }
  
  .sinarmas-wrapper .sinarmas-footer-widget .sinarmas-socials li a {
    width: 44px;
    height: 44px;
    margin-right: 10px;
    color: #ffffff;
    background-color: black;
    border-radius: 50%;
    font-size: 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-out;
  }
  
  .sinarmas-wrapper .sinarmas-footer-widget .sinarmas-socials li a:hover {
    background-color: purple;
  }
  
  .sinarmas-wrapper .sinarmas-footer-widget h6 {
    color: #585978;
    margin: 10px 0 35px;
    font-size: 20px;
    font-weight: 600;
  }
  
  .sinarmas-wrapper .sinarmas-footer-widget .sinarmas-links li {
    list-style: none;
  }
  
  .sinarmas-wrapper .sinarmas-footer-widget .sinarmas-links li a {
    color: #585978;
    font-size: 16px;
    text-decoration: none;
    text-transform: capitalize;
    line-height: 32px;
    transition: all 0.3s ease-out;
  }
  
  .sinarmas-wrapper .sinarmas-footer-widget .sinarmas-links li a:hover {
    color: #080808;
  }
  
  .sinarmas-copyright-wrapper {
    padding: 20px 0;
    border-top: 1px solid rgba(88, 89, 120, 0.4);
  }
  
  .sinarmas-copyright-wrapper p {
    color: rgba(88, 89, 120, 0.6);
    font-size: 14px;
    font-weight: 500;
    text-align: center;
  }
  
  .sinarmas-copyright-wrapper p a {
    color: inherit;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease-out;
  }
  
  .sinarmas-copyright-wrapper p a:hover {
    color: #000000;
  }
  
  /* Let's write the media query */
  @media (max-width: 992px) {
    .sinarmas-container {
        max-width: 960px;
    }
  
    .sinarmas-wrapper .sinarmas-footer-widget,
    .sinarmas-wrapper .sinarmas-footer-widget:nth-child(1) {
        width: calc(50% - 30px);
    }
  }
  
  @media (max-width: 768px) {
    .sinarmas-footer-widget {
        max-width: 100%;
        margin-bottom: 20px;
    }
  
    .sinarmas-footer-widget h6 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        font-size: 20;
        margin-top: -10px;
    }
  
    .sinarmas-footer-widget ul {
        display: none;
        list-style: none;
        padding: 0;
    }
  
    .sinarmas-footer-widget.active ul {
        display: block;
    }
  
    .sinarmas-footer-widget h6 i {
        display: inline-block;
    }
  
    .sinarmas-container {
        max-width: 720px;
    }
  
    .sinarmas-wrapper .sinarmas-footer-widget,
    .sinarmas-wrapper .sinarmas-footer-widget:nth-child(1) {
        width: 100%;
        margin: 0 10px 40px;
    }
  }
  
  @media (min-width: 769px) {
    .sinarmas-footer-widget h6 i {
        display: none;
    }
  }
  .iler {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

  }

  .table-wrapper {
    overflow-x: auto;
    /* add horizontal scrolling */
  }

  .table-wrapper table {
    width: 100%;
    /* make the table full width */
    min-width: 500px;
    /* set a minimum width to enable scrolling */
  }

  .item {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 340px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    flex-shrink: 0;
    margin: 5px;
  }

  .item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }

  .img-iler {
    position: relative;
    width: 295px;
    height: 300px;
    float: left;
    /* Atau gunakan 'right' untuk mengalir ke kanan */
    overflow: hidden;
    margin-bottom: 20px;
  }

  .img-iler img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .img-iler .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .img-iler:hover .overlay {
    opacity: 1;
  }

  .merek {
    font-size: 30px;
    /* Menentukan ukuran font */
    font-family: 'Inter', Helvetica, sans-serif;
    /* Menentukan jenis font */
    font-weight: bold;
    margin-top: 15px;
    /* tambahkan jarak 20px di atas elemen merek */
    color: rgb(121, 0, 121);
  }




  .mb {
    font: 14px Inter, Helvetica, sans-serif;
    font-weight: bold;
    margin-bottom: 10px;
    color: rgb(51, 0, 255);
  }

  .price {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
  }

  .fitur {
    font-size: 17px;
    color: rgb(124, 1, 124);
    background-color: rgb(253, 253, 253);
    padding: 5px 10px;
    border-radius: 5px;
    font-family: 'Lato', sans-serif;
    display: flex;
    /* add this to make the element a flex kon */
    /* add this to center the text horizontally */
    align-items: center;
    /* add this to center the text vertically */
  }

  .discount {
    font-size: 14px;
    color: red;
  }

  .ppn {
    font-size: 13px;
    color: #999;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .wifi {
    background-color: purple;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 0 auto;
    /* Add this line */
    margin-bottom: 10px;
    display: block;
    width: 80%;
    font-weight: bold;
    text-align: center;
  }


  .badge {
    display: inline-block;
    padding: 5px 10px;
    background-color: #660000;
    color: white;
    border-radius: 5px;
    font-size: 12px;
  }

  .lihat-selengkapnya {
    color: blue;
    cursor: pointer;
    text-decoration: underline;
  }

  .myrepublic {
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 0 auto;
    /* Add this line */
    margin-bottom: 10px;
    display: block;
    width: 80%;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(4, 0, 0, 0.2);
    text-align: center;
  }

  .features {
    margin-top: 20px;
  }

  .features {
    margin-top: 20px;
    display: none;
  }

  .features.active {
    display: block;
  }

  .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }

  .feature-icon {
    margin-right: 10px;
  }

  .feature-text {
    font-size: 16px;
  }

  .white {

    font-size: 12px;
    color: #000000;
    background-color: rgb(253, 253, 253);
    padding: 5px 10px;
    border-radius: 5px;
    font-family: 'Lato', sans-serif;
    display: flex;
    /* add this to make the element a flex kon */
    /* add this to center the text horizontally */
    align-items: center;
    /* add this to center the text vertically */
  }

  .gray {
    font-size: 12px;
    color: #000000;
    background-color: rgb(253, 253, 253);
    padding: 5px 10px;
    border-radius: 5px;
    font-family: 'Lato', sans-serif;
    display: flex;
    /* add this to make the element a flex kon */
    /* add this to center the text horizontally */
    align-items: center;
    /* add this to center the text vertically */
  }


  [lang="persen"] {

    cursor: pointer;
    flex: initial;
    border-radius: 9999px;
    flex-direction: row;
    align-items: center;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    background-color: #58045460;
    align-self: center;
    margin-left: 0.5rem;
    font-size: 0.7rem;
    font-weight: 500;
    color: #56046f;
    text-align: center;
  }

  [lang="e"] {

    cursor: pointer;
    flex: initial;
    border-radius: 9999px;
    flex-direction: row;
    align-items: center;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    background-color: #ecb5b5;
    align-self: center;
    margin-left: 0.5rem;
    font-size: 0.7rem;
    font-weight: 500;
    color: #9f0000;
    text-align: center;
  }

  [lang="bln"] {
    font: 14px Inter, Helvetica, sans-serif;
  }

  .hedrr {
    background-color: #6a1b9a;
    color: white;
    padding: 40px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(24, 3, 74, 0.916);
  }

  .hedr {
    background-color: #fdfdfd;
    color: rgb(0, 0, 0);
    padding: 40px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(16, 1, 51, 0.916);
  }

  .hedrr h1 {
    margin: 0;
    font-size: 24px;
  }

  .hedrr p {
    margin: 5px 0 0;
    font-size: 16px;
  }

  .tabs {
    display: flex;
    justify-content: center;
    margin: 20px 0;
  }

  .tabs button {
    background-color: white;
    border: 2px solid #6a1b9a;
    color: #6a1b9a;
    padding: 10px 20px;
    margin: 0 5px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
  }

  .tabs button.active {
    background-color: #6a1b9a;
    color: white;
  }



  @media (max-width: 768px) {
    .tabs button {
      padding: 8px 16px;
      font-size: 14px;
    }
  }


  .internet-container {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .internet-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin: 10px;
    padding: 20px;
    width: 200px;
    text-align: center;
    border-top: 5px solid #6a1b9a;
  }

  .internet-card h3 {
    margin: 0;
    font-size: 16px;
    color: #6a1b9a;
  }

  .internet-card h4 {
    margin: 10px 0;
    font-size: 14px;
    color: #333;
  }

  .internet-price {
    font-size: 24px;
    color: #333;
    margin: 10px 0;
  }

  .internet-price span {
    font-size: 14px;
    color: #666;
  }

  .internet-description {
    font-size: 12px;
    color: #666;
    margin: 10px 0;
  }

  .internet-button {
    background-color: white;
    border: 1px solid #6a1b9a;
    border-radius: 5px;
    color: #6a1b9a;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 14px;
    display: inline-block;
    margin-top: 10px;
  }

  .internet-button:hover {
    background-color: #6a1b9a;
    color: white;
  }

  .packages {
    display: none;
  }

  .packages.active {
    display: block;
  }

  .containerbisnis {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    overflow-x: auto;
    width: 100%;
  }

  .cardbisnis {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 340px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    flex-shrink: 0;
  }

  .cardbisnis:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }

  .cardbisnis img {
    width: 100%;
    height: auto;
    border-radius: 10px 10px 0 0;
  }

  .cardbisnis h2 {
    color: purple;
    font-size: 24px;
    margin: 10px 0;
  }

  .cardbisnis h3 {
    color: purple;
    font-size: 18px;
    margin: 10px 0;
  }

  .cardbisnis p {
    color: #333;
    font-size: 16px;
    margin: 10px 0;
  }

  .cardbisnis .price {
    font-size: 32px;
    font-weight: bold;
    color: #000;
  }

  .cardbisnis .price span {
    font-size: 16px;
    color: #666;
  }

  .cardbisnis .btn {
    background-color: purple;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 10px 0;
    transition: background-color 0.3s;
  }

  .cardbisnis .btn:hover {
    background-color: #4a0072;
  }

  .cardbisnis .btn-secondary {
    background-color: #fff;
    color: purple;
    border: 1px solid purple;
    transition: background-color 0.3s, color 0.3s;
  }

  .cardbisnis .btn-secondary:hover {
    background-color: purple;
    color: #fff;
  }

  .cardbisnis .features {
    text-align: left;
    margin-top: 20px;
  }

  .cardbisnis .features h4 {
    color: purple;
    font-size: 18px;
    margin-bottom: 10px;
  }

  .cardbisnis .features ul {
    list-style: none;
    padding: 0;
  }

  .cardbisnis .features ul li {
    margin: 5px 0;
    font-size: 14px;
    color: #333;
  }

  .cardbisnis .features ul li i {
    color: purple;
    margin-right: 10px;
  }

  .section-layanan {
    background-color: #fce4f7;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20vh;
    margin: 0;
    font-family: Arial, sans-serif;
  }

  .btn-langganan {
    background: linear-gradient(90deg, purple, #350144);
    border: none;
    border-radius: 20px;
    color: rgb(255, 255, 255);
    padding: 15px 30px;
    font-size: 16px;
    text-decoration: none;
    text-align: center;
    transition: background 0.3s ease;
  }

  .btn-langganan:hover {
    background: linear-gradient(90deg, #32003e, #460350);
    color: rgb(235, 238, 238);
  }

  .img-style-pembayaran {
    width: 100%;
    height: auto;
  }