body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

.privacy-section {
    display: flex;
    align-items: center;
    position: relative;
    min-height: clamp(300px, 40vw, 400px);
    overflow: hidden;
    padding: 0 50px; /* Adds padding to the left and right */
    margin-top: 120px;
}

.privacy-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.privacy-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 50%;
}

.privacy-text {
    position: relative;
    text-align: left;
    z-index: 2;
}

.privacy-text h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #000000;
}

.privacy-text p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #000000;
}

.privacy-text .btn {
    display: inline-block;
    background: linear-gradient(135deg, #FF8405 0%, #F9348D 97.4%);
    color: white;
    text-decoration: none;
    font-size: 1rem;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    margin-top: 20px;
}

.privacy-text .btn:hover {
    background-color: #c02c76;
}

@media (max-width: 992px) {
    .privacy-section {
        min-height: clamp(280px, 44vw, 360px);
    }
}

@media (max-width: 768px) {
    .privacy-section {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        margin-top: 96px;
    }

    .privacy-text {
        max-width: 100%;
        text-align: center;
    }

    .privacy-text h1 {
        font-size: 2rem;
    }

    .privacy-text .btn {
        margin: 0 auto; /* Center the button on smaller screens */
    }
}



  
.text-description {
    background-color: #ffffff;
    padding: 40px 20px;
  }
  
  .text-description .container {
    max-width: 800px;
    margin: 0 auto;
    color: #333333;
    line-height: 1.6;
  }
  
  .text-description p {
    margin-bottom: 20px;
    font-size: 1rem;
  }
  
  .text-description a.terms-link {
    color: #007bff;
    text-decoration: none;
  }
  
  .text-description a.terms-link:hover {
    text-decoration: underline;
  }





  
  .infodrop-section {
    background-color: #ffffff;
    padding: 40px 20px;
  }
  
  .infodrop-container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .infodrop-item {
    border-top: 1px solid #ccc;
    padding: 20px 0;
  }
  
  .infodrop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
  }
  
  .infodrop-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: bold;
  }
  
  .infodrop-toggle-button {
    background: none;
    border: none;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    color: #d63384;
  }
  
  .infodrop-content {
    display: none;
    padding-top: 10px;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
  }
  
  .infodrop-item.active .infodrop-content {
    display: block;
    max-height: 1000px; /* Large enough value to accommodate content */
  }
  
  .infodrop-item.active .infodrop-toggle-button {
    content: '-';
  }
  



