/* General Styles */
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@400;600;700&display=swap");

html {
  scroll-behavior: smooth; /* Enable smooth scrolling */
  margin: 0;
  padding: 0;
}

/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Raleway", sans-serif; /* Menggunakan font Raleway */
}

body {
  background-color: #d1dce4; /* Warna abu-abu terang */
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center; /* Centers all containers horizontally */
  justify-content: flex-start;
  min-height: 100vh;
}

/* HAMBURGER MENU (Sembunyikan di Desktop) */
.menu-toggle {
  display: none; /* Secara default, hamburger tidak muncul di desktop */
}
/* SEMBUNYIKAN SLIDER DI DESKTOP */
.image-slider {
  display: none; /* Secara default, tidak muncul */
}
/* Container with Shadow */
.container {
  margin-top: 50px;
  width: 100%;
  max-width: 1332.85px;
  max-height: 1500px;
  margin: 0 auto;
  padding: 50px;
  background-color: #fff; /* Warna putih untuk kontainer */
  border-radius: 40px; /* Sudut rounded */
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5); /* Shadow box */
  flex-direction: column; /* Stack children vertically */
  align-items: center; /* Center children horizontally */
  display: flex; /* Enable flexbox */
}
/* Container with Shadow */
.container-2 {
  max-width: 1332.85px;
  max-height: 4800px;
  margin: 150px auto;
  padding: 40px;
  background-image: url("../img/bg2.png"); /* Set the background image */
  background-size: cover; /* Ensure the background covers the entire container */
  background-position: center; /* Center the background image */
  background-repeat: no-repeat; /* Prevent the background from repeating */
  border-radius: 40px; /* Sudut rounded */
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5); /* Shadow box */
  flex-direction: column; /* Stack children vertically */
  align-items: center; /* Center children horizontally */
  display: flex; /* Enable flexbox */
  position: relative;
  opacity: 0; /* Start hidden */
  transform: translateY(20%); /* Start slightly below */
  transition: opacity 3s ease, transform 3s ease; /* Transition for opacity and position */
}
.container-2.show {
  opacity: 1; /* Fully visible */
  transform: translateY(0); /* Move to original position */
}

.container-4 {
  max-width: 1332.85px;
  max-height: 4800px;
  width: 100%;
  background-color: #fff; /* Set background color */
  border-radius: 40px; /* Rounded corners */
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5); /* Shadow box */
  flex-direction: column; /* Stack children vertically */
  align-items: center; /* Center children horizontally */
  display: flex; /* Enable flexbox */
  position: relative;
  opacity: 0; /* Start hidden */
  transform: translateY(20%); /* Start slightly below */
  transition: opacity 3s ease, transform 3s ease; /* Transition for opacity and position */
  margin-bottom: 50px;
}

.container-4.show {
  opacity: 1; /* Fully visible */
  transform: translateY(0); /* Move to original position */
}

/*.container-4 .faq-section {
    margin-left: 10%; /* Align to the left */
/*margin-right: auto; /* Ensure it doesn't center */
/*align-self: flex-start; /* For flexbox parents */
/*}*/
/* Navbar Styling */
.navbar {
  display: flex;
  align-items: center;
  padding: 10px 0 0 0;
}

.logo {
  margin-right: 0;
}

.logo img {
  width: 60%; /* Ubah ukuran logo menjadi lebih besar, misalnya 75% */
}

.nav-links {
  display: flex;
  gap: 50px; /* Jarak antar menu */
  list-style: disc;
  margin-left: 180px; /* Tambahkan margin-left auto */
  margin-right: 80px;
}

.nav-links li a {
  text-decoration: none;
  color: #000;
  font-size: 17px;
  font-weight: 600;
}

.join-btn {
  margin-left: 180px;
  margin-right: 10px;
  background-color: #f79441;
  color: #fff;
  padding: 10px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
}

/* Main Content */
.main-content {
  display: flex;
  flex-wrap: wrap; /* Allow wrapping of items */
  gap: 20px; /* Space between items */
  margin-top: 20px; /* Space above the main content */
  width: 100%; /* Ensure it takes full width */
}

.image-container {
  position: relative; /* Establish positioning context for the button */
  width: 100%; /* Make the width responsive */
  max-width: 771.84px; /* Set a max width for the image container */
  height: auto; /* Allow height to adjust automatically */
  display: flex;
  justify-content: center; /* Center content horizontally */
  align-items: flex-end; /* Center content vertically */
}

.left-card-image {
  width: 100%; /* Make the image responsive */
  height: 100%; /* Maintain aspect ratio */
  border-radius: 20px; /* Optional: rounded corners for the image */
  margin: 0;
  padding: 0%;
  /* transform: translateX(-100%); /* Start the image off-screen to the left */
  /* transition: transform 2s ease; /* Transition effect for the transform property */
}
/* Class to trigger the transition */
/*.left-card-image.show {
    transform: translateX(0); /* Move the image into view */
/*}*/

.btn-primary {
  position: absolute; /* Position the button absolutely */
  bottom: 70px; /* Distance from the bottom of the image */
  left: 70px; /* Distance from the left of the image */
  background-color: #4a9bf8; /* Background color of the button */
  color: #fff; /* Text color of the button */
  text-decoration: none; /* Remove underline */
  padding: 15px 40px; /* Padding for the button */
  border-radius: 5px; /* Rounded corners for the button */
  font-weight: 600; /* Font weight */
  z-index: 1; /* Ensure the button is above the image */
  /*    transform: translateX(-100%); /* Start the image off-screen to the left */
  /*    transition: transform 2s ease; /* Transition effect for the transform property */
}
/* Class to trigger the transition */
/*.btn-primary.show {
    transform: translateX(0); /* Move the image into view */
/*}*/
.right-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center; /* Align items to the right */
}

.card {
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Shadow box */
}

.yellow-card {
  max-width: 334.79px; /* Set a max width for the card */
  max-height: 342.03px; /* Set a max height for the card */
  overflow: hidden; /* Ensure content does not overflow */
  position: relative;
  /*    transform: translateX(100%); /* Start off-screen to the right */
  /*    transition: transform 2s ease; /* Transition effect */
}

.blue-card {
  max-width: 334.79px; /* Set a max width for the card */
  max-height: 220.78px; /* Set a max height for the card */
  overflow: hidden; /* Ensure content does not overflow */
  /*    transform: translateX(100%); /* Start off-screen to the right */
  /*    transition: transform 2s ease; /* Transition effect */
}
/* Class to trigger the transition */
/*.yellow-card.show,
.blue-card.show {
    transform: translateX(0); /* Move into view */
/*}*/
.card-image {
  width: 100%; /* Make the image responsive */
  height: 100%; /* Maintain aspect ratio */
  object-fit: cover;
}

.btn-black {
  position: absolute; /* Position the button absolutely */
  background-color: #000; /* Background color for the button */
  color: #fff; /* Text color for the button */
  text-decoration: none; /* Remove underline */
  border-radius: 5px; /* Rounded corners for the button */
  text-align: center; /* Center the text in the button */
  padding: 10px 35px; /* Padding for the button */
  z-index: 1; /* Ensure the button is above the image */
  font-weight: 500;
  top: 70%;
  left: 10%;
  /*    transform: translateX(100%); /* Start off-screen to the right */
  /*    transition: transform 2s ease; /* Transition effect */
}
/* Class to trigger the transition for the button */
/*.btn-black.show {
    transform: translateX(0); /* Move into view */
/*}*/

/* Browser Bar Styling */
.browser-bar {
  position: absolute; /* Keep it absolute */
  top: -20px; /* Position it at the top of the container */
  left: 40px; /* Align it to the left */
  z-index: 1; /* Ensure it is above other elements */
  display: flex;
  align-items: left;
  justify-items: left;
}

.dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 8px;
  /* Pastikan posisi relatif untuk transisi yang lebih baik */
  position: relative;
}

.dot.red {
  background-color: #ff5f57;
  transform: translateX(100%); /* Mulai di luar layar di sebelah kanan */
  transition: transform 2s ease; /* Efek transisi */
}

.dot.grey {
  background-color: #b7af9e;
  transform: translateX(100%); /* Mulai di luar layar di sebelah kanan */
  transition: transform 2s ease; /* Efek transisi */
}

.dot.green {
  background-color: #27c93f;
  transform: translateX(100%); /* Mulai di luar layar di sebelah kanan */
  transition: transform 2s ease; /* Efek transisi */
}

.dot.red.show,
.dot.grey.show,
.dot.green.show {
  transform: translateX(0); /* Bergerak ke posisi normal */
}
/* container-4 */
/* Content Styling */
.content {
  display: flex;
  padding: 30px;
  gap: 20px;
}

/* Text Section */
.text-section {
  flex: 2;
}

.text-section h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000;
}

.text-section h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #444;
}

.text-section h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #444;
}

.text-section p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}
.typing {
  border-right: 2px solid transparent; /* Cursor effect */
  white-space: normal; /* Prevent text wrapping */
  overflow: hidden; /* Hide the overflow */
  animation: blink 0.7s step-end infinite; /* Blinking animation */
}

@keyframes blink {
  50% {
    border-color: transparent; /* Cursor disappears */
  }
}
/* Image Section */
.image-section {
  flex: 1;
}

.image-section img {
  width: 100%;
  height: auto;
  border-radius: 15px; /* Rounded image */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Add shadow to the image */
}

.garis {
  position: relative; /* Keep relative positioning */
  width: 100%; /* Set width to 100% to match the container's width */
  max-width: 1200px; /* Optional: Set a max-width if you want to limit its size */
  height: 4px; /* Height of the rectangle */
  background: #d9d9d9; /* Color of the rectangle */
  margin: 25px auto; /* Center it horizontally and add vertical space */
}

.title {
  font-size: 40px;
  font-weight: 800;
  margin: 50px 0 30px;
}
.visi-misi-container {
  display: flex; /* Use flexbox to align items side by side */
  justify-content: space-between; /* Space between the images */
  margin-top: 20px; /* Add some space above the images */
  padding: 20px; /* Optional: Add padding for better spacing */
}
.visi,
.misi {
  flex: 1; /* Allow both images to take equal space */
  margin: 0 10px; /* Add some margin between the images */
  opacity: 0; /* Start hidden */
  transform: translateY(40%); /* Start slightly below */
  transition: opacity 2s ease, transform 2s ease; /* Transition for opacity and position */
}

.visi.show,
.misi.show {
  opacity: 1; /* Fully visible */
  transform: translateY(0); /* Move to original position */
}

.visi img,
.misi img {
  width: 100%; /* Make images responsive */
  height: auto; /* Maintain aspect ratio */
}
.commitment-container {
  margin-top: 100px;
  width: 100%;
  justify-content: center;
  display: flex; /* Use flexbox to align items side by side */
  position: relative; /* Set position relative for absolute positioning of child elements */
}
.commitment-box {
  width: 90%;
  max-width: 1200px;
  background: linear-gradient(90deg, #f4a913, #ffd167); /* Darker left side */
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin: auto;
  position: relative;
}
.commitment-box h2 {
  font-size: 35px;
  font-weight: bold;
  color: #000000;
  margin: 0 0 20px 50px;
}

.commitment-box p {
  font-size: 16px;
  line-height: 1.8;
  color: #333333;
  max-width: 80%;
  margin-left: 50px;
}

.commitment-box img {
  width: 150px;
  height: auto;
  border-radius: 10px;
}
.hand-image {
  position: absolute; /* Position the hand image absolutely */
  bottom: -10px; /* Align the bottom of the hand image with the bottom of the box */
  right: 20px; /* Adjust this value to position the image to the right */
  width: 170px; /* Set a width for the hand image */
  height: auto; /* Maintain aspect ratio */
  max-height: none; /* Set a maximum height for the hand image */
  z-index: 1; /* Ensure the image is above the box */
}

.container-3 {
  width: 100%;
  padding: 40px 60px;
  margin-top: 20px;
  border-radius: 15px;
  text-align: center;
}

.container-3 .title {
  font-size: 30px;
  font-weight: bold;
  color: #333;
  text-align: left;
  margin-bottom: 0;
}

.container-3 .title-underline {
  text-align: left;
  position: absolute; /* Keep relative positioning */
  width: 100%; /* Set width to 100% to match the container's width */
  max-width: 600px; /* Optional: Set a max-width if you want to limit its size */
  height: 4px; /* Height of the rectangle */
  background: #d9d9d9; /* Color of the rectangle */
  margin: 1px auto; /* Center it horizontally and add vertical space */
}

.container-3 .content2 {
  max-width: 1200px;
  margin: 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.container-3 .content2 .left {
  flex: 1;
  justify-content: center;
  text-align: left; /* Meratakan teks ke kiri */
  display: flex; /* Menggunakan flexbox */
  flex-direction: column; /* Menumpuk elemen secara vertikal */
  align-items: flex-start; /* Memastikan elemen berada di kiri */
}
.container-3 .content2 .right {
  text-align: left;
  align-items: center;
  flex: 1;
  padding: 20px;
}

.container-3 .content2 h3 {
  text-align: left;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #000;
}

.container-3 .content2 p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.container-3 .content2 ul {
  list-style-type: disc;
  margin: 0;
  padding-left: 20px;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.container-3 .content2 ul li {
  margin-bottom: 10px;
}

.container-table {
  width: 100%;
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
  text-align: center;
}

.table-title {
  font-size: 40px;
  margin-bottom: 50px;
  color: #333;
}

.table-rows {
  display: flex;
  flex-direction: column;
  gap: 2px; /* Spacing between rows */
}
.row {
  transform: translateY(20px); /* Mulai dari posisi lebih rendah */
  opacity: 0; /* Mulai dari transparan */
  transition: transform 0.5s ease, opacity 0.5s ease; /* Transisi untuk efek */
}

.row.show {
  transform: translateY(0); /* Kembali ke posisi normal */
  opacity: 1; /* Menjadi terlihat */
}
.row img {
  width: 100%;
  max-width: 1100px; /* Optional: Limit image width */
  height: auto;
}

/* FAQ Styles */
.faq-section {
  max-width: 1000px;
  margin: 80px auto 80px 200px; /* Center the section */
  font-family: "Poppins", sans-serif;
  text-align: left;
  align-self: flex-start;
}

.faq-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px; /* Add space below the title */
  color: #333;
  text-align: left; /* Align the title to the left */
}

.faq-container {
  background: #ffffff; /* Add a background color */
}

.faq-item {
  border-bottom: 1px solid #f0a500;
  padding: 15px 0;
}

.faq-title {
  font-family: "Raleway";
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  color: #333;
}

.faq-title:hover {
  color: #f0a500;
}

.plus {
  font-family: "Raleway";
  font-size: 30px;
  font-weight: none;
  margin-left: 30px;
}

.faq-detail {
  font-family: "Raleway";
  display: none; /* Initially hidden */
  padding: 10px 0;
  font-size: 16px;
  color: #666;
  line-height: 1.5;
  text-align: justify; /* Justify text for better readability */
}

/* Footer Styles */
.footer {
  font-family: "Poppins";
  width: 100%;
  background-color: #1a1a1a; /* Dark background */
  color: #ffffff; /* White text */
  padding: 40px 20px 10px 20px;
  border-radius: 40px;
  text-align: left;
  margin: none;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto 0;
}

.footer-left {
  flex: 1;
  min-width: 300px;
}

.footer-middle,
.footer-right {
  flex: 2;
  min-width: 300px;
  display: flex;
  justify-content: flex-end;
}

.footer h4 {
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff;
}

.footer p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  text-decoration: none;
  font-size: 14px;
  color: #ffffff;
}

.footer ul li a:hover {
  color: #4fc3f7; /* Optional hover color */
}

.footer-bottom {
  margin: 0 80px 10px 80px;
  border-top: 1px solid #333;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
}

.footer-item {
  flex: 1; /* Make each item flexible */
  display: flex;
  justify-content: center;
  align-items: center;
}

.center-item {
  justify-content: center; /* Force email to center */
}

.footer-bottom p {
  font-size: 14px;
  margin: 0;
}

.footer-bottom a {
  color: #4fc3f7;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: #ffffff;
  font-size: 18px;
}

.social-icons a:hover {
  color: #4fc3f7;
}

.footer-copy {
  text-align: center;
  margin-top: 20px;
}

.footer-copy p {
  font-size: 14px;
  color: #aaa;
}

/* Mobile View Override */
@media (max-width: 768px) {
  html,
  body {
    scroll-behavior: smooth; /* Enable smooth scrolling */
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }

  /* General Reset */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Raleway", sans-serif; /* Menggunakan font Raleway */
  }

  /* Navbar */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px; /* Reduce padding */
    position: relative;
  }

  /* Hamburger Menu */
  .menu-toggle {
    font-size: 24px; /* Slightly reduce size */
    cursor: pointer;
    display: block; /* Show in mobile */
  }

  /* Navigation Links */
  .nav-links {
    list-style: none;
    position: absolute;
    top: 50px; /* Slightly reduce distance from navbar */
    right: 15px; /* Adjust position */
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 140px; /* Reduce width */
    display: none; /* Hide by default */
    flex-direction: column;
    border-radius: 5px;
    gap: 10px;
    padding: 5px 0; /* Reduce padding inside */
  }

  /* Show menu when active */
  .nav-links.active {
    display: flex;
    padding: 8px 12px;
    z-index: 10;
    margin-left: auto; /* Tambahkan margin-left auto */
    margin-right: auto;
  }

  /* Reduce spacing between list items */
  .nav-links li {
    padding: 8px 12px; /* Less padding inside each menu item */
    text-align: left;
    z-index: 10;
  }

  /* Links inside menu */
  .nav-links li a {
    text-decoration: none;
    color: #333;
    display: block;
    font-size: 14px; /* Reduce font size for better fit */
    line-height: 1.2; /* Reduce line height */
    z-index: 10;
  }

  /* Layout Mobile View */
  .container {
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    align-items: center;
    padding: 20px;
  }
  .main-content {
    display: none; /* Sembunyikan layout desktop di mobile */
  }

  /* Ensure the slider container takes full width */
  .image-slider {
    display: block;
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    padding: 20px;
    box-sizing: border-box;
  }

  /* Track for images (moves horizontally) */
  .image-track {
    gap: 20px;
    display: flex;
    transition: transform 0.3s ease-out;
    will-change: transform;
  }

  /* Default image scaling */
  .image-track img {
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    flex-shrink: 0; /* Prevent images from shrinking */
  }

  /* Different scaling for each image */
  .image-1 {
    max-width: 90%;
    max-height: 75vh;
  }

  .image-2 {
    max-width: 90%;
    max-height: 75vh;
  }

  .image-3 {
    max-width: 90%;
    max-height: 75vh;
  }

  /* Looping image clones */
  .image-clone {
    max-width: 90%;
    max-height: 75vh;
    opacity: 0.5; /* Make clones slightly faded */
  }

  /* Animasi slider otomatis */
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    33% {
      transform: translateX(-100%);
    }
    66% {
      transform: translateX(-200%);
    }
    100% {
      transform: translateX(0);
    }
  }

  /* Content Box */
  .content-box {
    background: #000;
    color: #fff;
    padding: 20px;
    text-align: center;
    margin-top: 20px;
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
  }

  .content-box h2 {
    font-size: 14px;
    opacity: 0.7;
  }

  .content-box h1 {
    font-size: 22px;
    font-weight: bold;
  }

  .btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
  }

  .image-section {
    display: none;
  }

  .visi-misi-container {
    flex-direction: column; /* Stack images vertically */
    align-items: center; /* Center align for better layout */
    gap: 20px; /* Add spacing between images */
  }

  .visi,
  .misi {
    width: 100%; /* Adjust width for mobile */
    max-width: 500px; /* Prevents images from being too large */
    margin: 10px 0; /* Add spacing above and below */
  }

  .visi img,
  .misi img {
    width: 100%; /* Ensure full width in container */
    height: auto; /* Keep aspect ratio */
  }
  .hand-image {
    display: none;
  }

  .container-3 {
    width: 100%;
    padding: 10px 10px;
    margin-top: 20px;
    border-radius: 15px;
    text-align: center;
  }
  .container-3 .content2 {
    flex-direction: column; /* Stack sections vertically */
    align-items: flex-start; /* Align content to the left */
    gap: 20px; /* Add space between sections */
  }

  .container-3 .content2 .left {
    width: 100%; /* Use full width */
    max-width: 100%; /* Prevent unnecessary width limits */
    text-align: left;
    padding-top: 50px;
    margin: none; /* Ensure no margin affects the alignment */
  }

  .container-3 .content2 .right {
    width: 100%; /* Use full width */
    max-width: 100%; /* Prevent unnecessary width limits */
    text-align: left;
    padding: 20px 0 0 0;
    margin: none; /* Ensure no margin affects the alignment */
  }

  .footer-left {
    flex: 1;
    width: 100%; /* Ubah lebar menjadi 100% */
  }
  .footer-middle,
  .footer-right {
    flex: 2;
    width: 50%; /* Ubah lebar menjadi 50% */
    margin-top: 20px; /* Tambahkan margin atas untuk membuat jeda */
  }
  .footer-content {
    flex-direction: row; /* Ubah arah flex menjadi column */
  }
  .footer-middle,
  .footer-right {
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
  }

  .faq-section {
    flex: 1;
    max-width: 400px;
    margin: 0 10px 0 20px; /* Center the section */
    font-family: "Poppins", sans-serif;
    text-align: left;
  }

  .faq-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px; /* Add space below the title */
    color: #333;
    text-align: left; /* Align the title to the left */
  }

  .faq-container {
    background: #ffffff; /* Add a background color */
  }

  .faq-item {
    border-bottom: 1px solid #f0a500;
    padding: 15px 0;
    margin: 0 0 0 10px;
  }

  .faq-title {
    font-family: "Raleway";
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    color: #333;
  }

  .faq-title:hover {
    color: #f0a500;
  }

  .plus {
    font-family: "Raleway";
    font-size: 30px;
    font-weight: none;
    margin-left: none;
  }

  .faq-detail {
    font-family: "Raleway";
    display: none; /* Initially hidden */
    padding: 10px 0;
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    text-align: justify; /* Justify text for better readability */
  }
  .faq-detail p {
    margin: 10px 20px 0 0;
  }

  .commitment-container {
    margin-top: 100px;
    width: 100%;
    justify-content: center;
    display: flex; /* Use flexbox to align items side by side */
    position: relative; /* Set position relative for absolute positioning of child elements */
  }
  .commitment-box {
    width: 100%;
    max-width: 1200px;
    background: linear-gradient(90deg, #f4a913, #ffd167); /* Darker left side */
    border-radius: 15px;
    padding: 10px 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: auto;
    position: relative;
  }
  .commitment-box h2 {
    font-size: 35px;
    font-weight: bold;
    color: #000000;
    margin: 0 0 20px 10px;
  }

  .commitment-box p {
    font-size: 14px;
    line-height: 1.8;
    color: #333333;
    max-width: 90%;
    margin-left: 10px;
  }

  .container-table {
    width: 100%;
    max-width: 1000px;
    margin: 40px auto;
    padding: 10px;
    text-align: center;
  }

  .table-title {
    font-size: 40px;
    margin-bottom: 50px;
    color: #333;
  }

  .table-rows {
    display: flex;
    flex-direction: column;
    gap: 2px; /* Spacing between rows */
  }
  .row {
    transform: translateY(20px); /* Mulai dari posisi lebih rendah */
    opacity: 0; /* Mulai dari transparan */
    transition: transform 0.5s ease, opacity 0.5s ease; /* Transisi untuk efek */
  }

  .row.show {
    transform: translateY(0); /* Kembali ke posisi normal */
    opacity: 1; /* Menjadi terlihat */
  }
  .row img {
    width: 100%;
    max-width: 1100px; /* Optional: Limit image width */
    height: auto;
  }
  .content {
    display: flex;
    padding: 10px;
    gap: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 20px;
    gap: 10px;
  }

  .footer-bottom p {
    margin: 3px 0;
  }

  .social-icons {
    margin-top: 10px;
  }

  .social-icons a {
    margin-right: 10px;
    font-size: 20px;
  }
}
