body {
    margin: 0;
   
}

/* Header */

#manifesto {
position: relative;
    background-size: cover;
    background-position: center; /* Atur posisi background agar bagian atas terlihat */
    color: #fff; /* Warna teks putih untuk kontras */
    padding: 50px 5%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; /* Align items to the left */
    overflow: hidden; /* Ensure overlay is contained within the section */
    margin-top: 5%;
}
#manifesto::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Hitam dengan opasitas 50% */
    z-index: 1; /* Position the overlay behind the text */
}

#manifesto h1,
#manifesto p,
.buttons {
    position: relative;
    z-index: 2; /* Ensure text and buttons are above the overlay */
}

#manifesto h1 {
    font-size: 48px; /* Adjust font size */
    font-weight: 700;
    color: #fff; /* Warna teks putih untuk kontras */
    font-family: 'Montserrat', Montserrat;
    margin-bottom: 20px;
}

#manifesto p {
    max-width: 1200px; /* Batasi lebar paragraf */
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 18px;
    color: #fff; /* Warna teks putih */
    font-family: 'Montserrat', Montserrat;
}

.buttons {
    display: flex;
    gap: 15px;
}

/* General button styles */
.buttons button {
    padding: 10px 20px; /* Adjust padding to increase button size */
    font-size: 16px; /* Font size */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Pointer on hover */
    transition: all 0.3s ease; /* Smooth transition on hover */
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
}

/* "Contact Us" button */
.buttons a:first-child button {
    background-color: #3C6E71; /* Warna background asli */
    color: #ffffff; /* Warna teks hitam */
    border: 2px solid #3C6E71; /* Border kuning */
    font-weight: bold;
    font-family: "Montserrat", sans-serif;
    transition: background-color 0.3s ease, color 0.3s ease; /* Animasi smooth saat hover */
}

/* "Learn More" button */
.buttons a:last-child button {
    background-color: transparent; /* Warna background asli (transparan) */
    color: #ffffff; /* Warna teks kuning */
    border: 2px solid #3C6E71; /* Border kuning */
    font-weight: bold;
    font-family: "Montserrat", sans-serif;
    transition: background-color 0.3s ease, color 0.3s ease; /* Animasi smooth saat hover */
}

/* Hover untuk button kedua */
.buttons a:last-child button:hover {
    background-color: #3C6E71; /* Warna background berubah menjadi kuning */
    color: #ffffff; /* Warna teks menjadi hitam */
}

.buttons a:first-child button:hover {
    background-color: transparent; /* Buat background transparan saat hover */
    color: #ffffff; /* Warna teks menjadi kuning */
}

/* Hover effect for both buttons */
.buttons button:hover {
    opacity: 1; /* Slight opacity on hover */
}

.sos {
  display: flex;
  justify-content: center;
  align-items: center;
   position: relative;
    z-index: 2; /* Ensure text and buttons are above the overlay */
    margin-top: 20px;
}

.sos-button {
  background-color: #3C6E71;
  color: white;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: bold;
 border: 2px solid #3C6E71; /* Border kuning */
   border-radius: 5px; /* Rounded corners */
  cursor: pointer;
  transition: all 0.3s ease;
}

.sos-button:hover {
  background-color: transparent;
  color: white;
}




@media (max-width: 768px) {
    #manifesto {
        padding-top: 0px; /* Adjust this value based on the height of your header */
        margin-top: 0px;
    }

    #manifesto h1 {
        font-size: 28px; /* Adjust font size for mobile */
        text-align: center;
    }

    #manifesto p {
        font-size: 16px; /* Adjust font size for mobile */
        padding: 0 10px; /* Add some padding for better readability */
    }
}

@media (max-width: 576px) {
  .buttons {
      /* Stack buttons vertically */
      flex-direction: column; 
      /* Center align buttons */
      align-items: center; 
      width: 100%;
  }

  .buttons a {
      width: 100%; /* Make buttons wider to fit the screen */
      margin-bottom: 10px; /* Add space between buttons */
  }

  .buttons a button {
    width: 100%; /* Make buttons wider to fit the screen */
  }
}

/* Header End*/


/* what we do */

#what-we-do {
    padding: 40px 20px;
    text-align: center;
    background-color: white;
}

#what-we-do h2 {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 40px;
    font-family: "Montserrat", Montserrat;
}

.services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 0% 10% 0% ;
}

.service {
    background-color: #fff;
    border: 5px solid #e5b301;
    padding: 20px;
    text-align: left;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.service img {
    height: 109px;
    width: 100px;
    margin-bottom: 20px;
    cursor: pointer;

}

.service h3 {
    font-size: 30px;
    color: #e5b301;
    margin-bottom: 10px;
    font-family: "Poppins", poppins;
}

.service p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    font-family: "Poppins", poppins;
    font-weight: bold;
}


@media screen and (max-width: 768px) {
    .services {
        grid-template-columns: 1fr;
        margin: 0 2.5% 0;
    }

    .services .service {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .services .service img {
      height: 82px;
      width: 75px;
    }
}

/* what we do end */


/* why choose us */
#why-choose-us {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%; /* Tinggi sesuai kebutuhan */
    background-color: #3C6E71;
    color: #fff;

}

#why-choose-us p {
  font-family: "PT Serif Caption", serif;
  font-size: 1.1em;
}

.content-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex-direction: row; /* Default untuk desktop */
    height: 100%; /* Sesuaikan tinggi kolom */
}

.image-container {
    flex: 1;
    text-align: center;
    padding-left: 10px;
    height: 100%; /* Tinggi gambar sama dengan kolom */
    margin: 25px 0px;
}

.image-container img {
    max-width: 50%;
    height: auto; /* Sesuaikan tinggi gambar */
    object-fit: cover; /* Agar gambar proporsional */
}

.vertical-line {
    width: 1px;
    height: 350px; /* Sesuaikan tinggi sesuai kebutuhan */
    background-color: #666;
    margin: 0 20px;
}

.text-container {
    flex: 1;
    text-align: left;
    
    height: 100%; /* Tinggi sama dengan kolom */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Teks di tengah kolom */
    padding: 20px 0;
    padding-right: 35px;
}

.text-container h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
}

.text-container p {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 20px;
    font-family: "Montserrat", sans-serif;
}

.button {
    background-color: black;
    border: 1px solid #FFD700;
    color: #FFD700;
    padding: 5px 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border-radius: 50px;
    transition: background-color 0.3s, color 0.3s;
    width: 160px; /* Menetapkan lebar tombol */
}

.button:hover {
    background-color: #FFD700;
    color: black;
    text-decoration: none;
}

/* Media query for mobile view */
@media (max-width: 768px) {
    #why-choose-us {
        height: auto; /* Tinggi otomatis berdasarkan konten */
        padding: 20px 20px 0; /* Tambahkan padding untuk kenyamanan */
    }

    .content-container {
        flex-direction: column; /* Susun elemen secara vertikal */
        align-items: center; /* Pusatkan konten secara horizontal */
        text-align: center; /* Pusatkan teks */
    }

    .vertical-line {
        display: none; /* Sembunyikan garis vertikal di tampilan mobile */
    }

.image-container {
        width: 100%;
        padding-left: 0;
        margin-top: 0;
        display: flex;
        justify-content: center;
    }

    .image-container img {
        width: 100%;       /* Gambar akan selebar layar */
        height: auto;      /* Tinggi menyesuaikan proporsi */
        max-width: 100%;   /* Tidak lebih dari parent */
        max-height: none;  /* Hilangkan batas tinggi */
    }
    .text-container {
        width: 100%;
        padding: 0 10px; /* Sedikit padding di kiri dan kanan */
        margin-bottom: 20px; /* Jarak bawah teks */
       
        text-align: center;
    }

    .text-container h1 {
        font-size: 2em; /* Ukuran font lebih kecil untuk mobile */
        margin-bottom: 10px; /* Jarak bawah judul */
    }

    .text-container p {
        font-size: 1em; /* Ukuran teks lebih kecil */
        line-height: 1.5;
        margin-bottom: 10px; /* Jarak bawah paragraf */
    }

    .button {
        padding: 10px 20px; /* Padding tombol lebih kecil */
        font-size: 1em; /* Ukuran font tombol */
        border-radius: 30px; /* Kurva tombol halus */
        width: auto; /* Tombol menyesuaikan ukuran konten */
    }
}

/* why choose us end  */


/* Team  */

#team {
  background: #fff;
  padding: 60px 0;
  text-align: center;
}

#team h1 {
  font-size: 36px;
  font-weight: 700;
  color: #000;
  text-align: left;
  margin-left: 100px;
  margin-top: 5%;
   font-family: 'Montserrat', Montserrat !important;
   text-align: center;

}

#team p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  max-width: 100%; /* Limit width for better text alignment */
  text-align: left;
 margin-left: 100px; /* Center text and add space below */
 font-family: 'Montserrat', Montserrat !important;
}

.info {
  padding-bottom: 10px;

}

.team-member {
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 200px;
  margin: 20px;
  text-align: center;
  padding: 10px;
  transition: transform 0.2s;
  cursor: pointer;
  display: inline-block; /* Keeps the boxes in line */
}

.team-member:hover {
  transform: translateY(-10px);
}

.team-member img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  padding-bottom: 10px;
}
 
.team-member h3 {
  font-size: 17px;
  margin-bottom: 10px;
  font-weight: bold;
  color: black;
  font-family: 'Montserrat', Montserrat !important;
}

.team-member h2 {
  font-size: 11px;
  margin-bottom: 10px;
  color: black;
  font-family: 'Montserrat', Montserrat !important;
}

.team-member p {
  font-size: 14px;
  color: #555;
  font-family: 'Montserrat', Montserrat !important;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.social-icons a {
  color: #f39c12;
  font-size: 1.2em;
  text-decoration: none;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #0073e6;
}



.popup {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.popup-content {
  display: flex;
  width: 90vw; /* Adjust as needed */
  height: 80vh; /* Adjust as needed */
  max-width: 1000px; /* Adjust as needed */
  max-height: 600px; /* Adjust as needed */
  margin: auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  padding-top: 45px;

  gap: 30px;
}

/* Bagian kiri: image */
.popup-left {
  flex: 1;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Konten di tengah */
  justify-content: flex-start; /* Konten di atas */
  margin-left: 2%;
 
}

/* Bagian kiri: image */
.popup-left img {
  width: 100%;
  height: auto;
  max-width: 300px; /* Adjust as needed */
  border-radius: 8px;
}
.popup-text {
   text-align: left;
  margin-top: 10px;
  width: 100%; /* Lebar penuh untuk sentralisasi */
 color: black;
 font-family: 'Montserrat', Montserrat !important;
}

.popup-text h3{
   margin: 5px 0;
  font-size: 1.25rem; /* Sesuaikan ukuran */
  font-family: 'Montserrat', Montserrat !important;
  font-weight: bold;
}
.popup-text h2 {
  margin: 5px 0;
  font-size: 1.15rem; /* Sesuaikan ukuran */
  font-family: 'Montserrat', Montserrat !important;
}

/* Bagian kanan: text */
.popup-right {
  flex: 2;
  /* margin-left: -25%; */
  overflow-y: auto;
  margin-right: 5%;
}

.popup-right h3 {
  margin: 0 0 10px 0;
  font-size: 24px;
}


.popup-right h2 {
  margin: 0 0 20px 0;
  font-size: 20px;
  font-weight: 400;
}

.popup-right p {
  font-size: 16px;
  line-height: 1.6;
  text-align: justify; /* Membuat paragraf lebih rapi */
  white-space: pre-wrap; /* Mempertahankan format spasi */
}


.close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.5rem;
  cursor: pointer;
}


@media (max-width: 768px) {
  #team {
    padding-top: 100px; /* Tambahkan padding di bagian atas agar teks tidak tertutup navbar */
  }

  #team h1 {
    font-size: 24px;
    text-align: center;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0; /* Atur margin agar tidak menambah jarak yang tidak perlu */
    font-family: 'Montserrat', Montserrat !important;
  }

  #team p {
    font-size: 14px;
    max-width: 90%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    font-family: 'Montserrat', Montserrat !important;
  }
}



@media screen and (max-width: 768px) {


    .popup-content {
    flex-direction: column;
    width: 80%; /* Mengurangi lebar popup di mobile */
    height: 80%; /* Biarkan tinggi mengikuti konten */
    padding: 10px; /* Kurangi padding untuk menyesuaikan dengan layar kecil */
    /* margin-top: 25%;  */
    /* Tambahkan margin top */
    max-height: 80vh; /* Batasi tinggi popup agar tidak tertutup di layar kecil */
  }

  .popup-left img {
    width: 70%; /* Kurangi ukuran gambar di mobile */
    margin: 10px auto;
  }

  .popup-text {
    text-align: center;
    margin-top: 10px;
  }

  .popup-right {
    margin-left: 0;
    margin-right: 0;
    text-align: justify;
    padding: 10px;
  }

  .popup-right h3,
  .popup-right h2 {
    text-align: center;
  }

  .popup-right p {
    text-align: justify;
  }

  .close {
    top: 10px;
    right: 10px;
    font-size: 1.2rem;
  }
}

/* Team End */

/* membership */ 

#join-membership {
    background-color: #1d1d1d;
    color: #ffffff;
    padding: 40px 0px;
    text-align: center;
    border-radius: 10px;
    margin-right: 5%;
    margin-left: 5%;
    margin-bottom: 100px;
    max-width: 100%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.membership-content h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #ffffff;
    font-family: "Montserrat", Montserrat;
    font-weight: bold;
}

.membership-content p {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #fff;
    font-family: "PT Serif Caption", serif;
    padding: 0px 10%;
}

.membership-form {
    display: flex;
    justify-content: center;
    align-items: center;
}

.membership-form input[type="email"] {
    padding: 10px 15px;
    font-size: 1em;
    border-radius: 25px;
    border: 1px solid #ccc;
    margin-right: 10px;
    width: 250px;
    box-shadow: inset 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.membership-form button {
    background-color: #f0c14b;
    color: #1d1d1d;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.membership-form button:hover {
    background-color: #e6b800;
}
/* membership end */




/* ---------------- NEW --------------------- */
/* About Us Section
--------------------------------*/

#about {
  background: url("../img/pic/about-bg.png") center top no-repeat fixed;
  background-size: cover;
  padding: 60px 0 40px 0;
  position: relative;
}

#about::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.75);
  z-index: 9;
}

#about .container {
  position: relative;
  z-index: 10;
}

#about .about-col {
  background: #fff;
  border-radius: 0 0 4px 4px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

#about .about-col .img {
  position: relative;
}

#about .about-col .img img {
  border-radius: 4px 4px 0 0;
}

#about .about-col .icon {
  width: 64px;
  height: 64px;
  padding-top: 8px;
  text-align: center;
  position: absolute;
  background-color: #18d26e;
  border-radius: 50%;
  text-align: center;
  border: 4px solid #fff;
  left: calc( 50% - 32px);
  bottom: -30px;
  transition: 0.3s;
}

#about .about-col i {
  font-size: 36px;
  line-height: 1;
  color: #fff;
  transition: 0.3s;
}

#about .about-col:hover .icon {
  background-color: #fff;
}

#about .about-col:hover i {
  color: #18d26e;
}

#about .about-col h2 {
  color: #000;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  padding: 0;
  margin: 40px 0 12px 0;
}

#about .about-col h2 a {
  color: #000;
}

#about .about-col h2 a:hover {
  color: #18d26e;
}

#about .about-col p {
  font-size: 14px;
  line-height: 24px;
  color: #333;
  margin-bottom: 0;
  padding: 0 20px 20px 20px;
}

/* Services Section
--------------------------------*/

#services {
  background: #fff;
  background-size: cover;
  padding: 60px 0 40px 0;
}

#services .box {
  margin-bottom: 30px;
}

#services .icon {
  float: left;
}

#services .icon i {
  color: #3C6E71;
  font-size: 36px;
  line-height: 1;
  transition: 0.5s;
}

#services .title {
  margin-left: 60px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

#services .title a {
  color: #111;
}

#services .box:hover .title a {
  color: #3C6E71;
}

#services .description {
  font-size: 14px;
  margin-left: 60px;
  line-height: 24px;
  margin-bottom: 0;
  font-weight: 500;
}



/* Contact Section
--------------------------------*/

#contact {
  padding: 60px 0;
}

#contact .contact-info {
  margin-bottom: 20px;
  text-align: center;
}

#contact .contact-info i {
  font-size: 48px;
  display: inline-block;
  margin-bottom: 10px;
  color: #3C6E71;
}

#contact .contact-info address,
#contact .contact-info p {
  margin-bottom: 0;
  color: #000;
}

#contact .contact-info h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
  color: #999;
}

#contact .contact-info a {
  color: #000;
}

#contact .contact-info a:hover {
  color: #3C6E71;
}

#contact .contact-address,
#contact .contact-phone,
#contact .contact-youtube,
#contact .contact-email {
  margin-bottom: 20px;
}

#contact .form #sendmessage {
  color: #3C6E71;
  border: 1px solid #3C6E71;
  display: none;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #errormessage {
  color: red;
  display: none;
  border: 1px solid red;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #sendmessage.show,
#contact .form #errormessage.show,
#contact .form .show {
  display: block;
}

#contact .form .validation {
  color: red;
  display: none;
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 13px;
}

#contact .form input,
#contact .form textarea {
  padding: 10px 14px;
  border-radius: 0;
  box-shadow: none;
  font-size: 15px;
}

#contact .form button[type="button"] {
  background:#3C6E71;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  cursor: pointer;
}

#contact .form button[type="button"]:hover {
  background:#3C6E71;
}



.lang-btn {
  background-color: transparent;
  color: #111;
  border: 2px solid #3C6E71;
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 13px;
  transition: background 0.3s, color 0.3s;
}

.lang-btn:hover {
  background-color: #3C6E71;
  color: #fff;
}


/* membership */ 

#join-membership {
    background-color: #3C6E71;
    color: #ffffff;
    padding: 40px 0px;
    text-align: center;
    border-radius: 10px;
    margin-right: 5%;
    margin-left: 5%;
    margin-bottom: 40px;
    margin-top: 40px;
    max-width: 100%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.membership-content {
  display: flex;
  flex-direction: column;
}

.image-sos img {
  width: 30%;
  height: auto;
  padding-bottom: 20px;
}

.sos-container {
  text-align: left;
}

.sos-container p{
  font-size: 10px;
}




.membership-content h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #ffffff;
    font-family: "Montserrat", Montserrat;
    font-weight: bold;
}

.membership-content p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #fff;
   font-family: 'Montserrat', Montserrat;
    padding: 0px 10%;
}

.membership-content h3 {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0px;
    color: #fff;
   font-family: 'Montserrat', Montserrat;
    padding: 0px 10%;
}

.membership-content h1{
 padding: 0px 10%;
 text-align: center;
}
.membership-content ul{
 margin-top: -10px;
 margin-bottom: 20px;
 padding: 0px 15%;
}

.playlist {
  margin-top: 15px;
  font-size: 18px;
  color: white;
  font-weight: bold;
}

.playlist-button{
text-align: center;
}
.order-btn {
  margin-top:0px;
  padding: 10px 20px;
  background-color: #f7efe2;
  color: black;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;

}

.order-btn:hover {
  background-color: #2a4f52;
  color: white;
}





.membership-form {
    display: flex;
    justify-content: center;
    align-items: center;
}

.membership-form input[type="email"] {
    padding: 10px 15px;
    font-size: 1em;
    border-radius: 25px;
    border: 1px solid #ccc;
    margin-right: 10px;
    width: 250px;
    box-shadow: inset 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.membership-form button {
    background-color: #f0c14b;
    color: #1d1d1d;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.membership-form button:hover {
    background-color: #e6b800;
}
/* membership end */

@media (max-width: 768px) {
  .membership-content p {
    text-align: center;
  }
  .membership-content h1 {
    text-align: center;
  }
  .membership-content h3 {
    text-align: center;
    padding: 0px 10% 20px;
  }
}

@media (max-width: 400px) {
  .membership-form {
      flex-direction: column;
      gap: 15px;
  }

  .membership-form input[type="email"] {
      margin-right: 0;
  }

  .membership-form button {
      width: 100%;
      max-width: 250px;
  }
}

@media (max-width: 768px) {
  .image-sos img{
    width: 60%;
  }
  .playlist{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .playlist-button {
    display: flex;
    flex-direction: column;
    text-align: center;
    max-width: 70%;
    gap: 10px;
  }
}
