.hero_section {
    color: #ffffff;
    padding: 10px 0;
    display: flex;
    justify-content: center;
  }
  
  .hero_container {
    width: 100%;
    max-width: 1000px;
    padding: 0 20px;
    text-align: center;
    margin: 0 auto;
  }
  
  .hero_heading {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
  }
  
  .hero_subtitle {
    font-size: 1.2rem;
    color: #aaa;
    margin-bottom: 40px;
    line-height: 1.6;
  }
  
  .hero_cta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
  }
  
  .play_icon {
    font-size: 20px;
    background: #1a1a1a;
    border-radius: 50%;
    padding: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
.cta_button {
  background: linear-gradient(90deg, #f3e3c3, #eec063);
  color: #000;
  padding: 12px 28px;
  border-radius: 0px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
  text-align: center;
  display: inline-block;
  position: relative;
  animation: subtlePulse 3s ease-in-out infinite;
}

.cta_button:hover {
  transform: scale(1.05);
  background: linear-gradient(90deg, #eec063, #f3e3c3);
}

/* Subtle pulse animation */
@keyframes subtlePulse {
  0% {
    box-shadow: 0 0 0px rgba(238, 192, 99, 0.3);
  }
  50% {
    box-shadow: 0 0 12px rgba(238, 192, 99, 0.5);
  }
  100% {
    box-shadow: 0 0 0px rgba(238, 192, 99, 0.3);
  }
}

  /* --- Responsive Breakpoints --- */
  
  @media (max-width: 1024px) {
    .hero_heading {
      font-size: 2.5rem;
    }
  
    .hero_subtitle {
      font-size: 1.1rem;
    }
  
    .hero_container {
      width: 90%;
    }
  }
  
  @media (max-width: 768px) {
    .hero_container {
      width: 80%;
    }
  
    .hero_heading {
      font-size: 2rem;
    }
  
    .hero_subtitle {
      font-size: 1rem;
    }
  
    .hero_cta {
      flex-direction: column;
      gap: 14px;
    }
  
    .cta_button {
      width: 100%;
      max-width: 220px;
    }
  }
  
  @media (max-width: 480px) {
    .hero_heading {
      font-size: 1.6rem;
    }
  
    .hero_subtitle {
      font-size: 0.95rem;
    }
  
    .cta_button {
      padding: 10px 20px;
      font-size: 0.95rem;
    }
  
    .play_icon {
      padding: 10px;
      font-size: 16px;
    }
  }
  /* Base Styles (Desktop: ≥1080px) */
.ltsmaster_wrapper {
  padding: 2rem 0rem;
  display: flex;
  justify-content: center;
}

.ltsmaster_container {
  width: 100%;
  max-width: 1100px;
  color: #ffffff;
}

.ltsmaster_heading {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
}

.ltsmaster_highlight {
  color: #eec063;
}

.ltsmaster_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.ltsmaster_card {
  background-color: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.ltsmaster_card:hover {
  transform: translateY(-6px);
}

.ltsmaster_image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.ltsmaster_card_content {
  padding: 1.25rem 1rem;
}

.ltsmaster_card_title {
  font-size: 1.2rem;
  color: #eec063;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.ltsmaster_card_text {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.4;
}


/* Tablet (≤768px) */
@media screen and (max-width: 768px) {
  .ltsmaster_container {
    max-width: 90%;
  }

  .ltsmaster_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .ltsmaster_heading {
    font-size: 2rem;
  }
}

/* Mobile (≤480px) */
@media screen and (max-width: 480px) {
  .ltsmaster_container {
    max-width: 80%;
  }

  .ltsmaster_grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .ltsmaster_heading {
    font-size: 1.75rem;
  }

  .ltsmaster_card_title {
    font-size: 1.1rem;
  }

  .ltsmaster_card_text {
    font-size: 0.95rem;
  }
}
/* WHO Section Wrapper */
.ltsmaster_who_wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 1rem;
  text-align: center;
  border-radius: 0.5rem;
}

/* Heading */
.ltsmaster_who_heading {
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 2rem;
}

.ltsmaster_green {
  color: #eec063; /* Gold Accent */
}

/* Grid Layout */
.ltsmaster_who_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 2rem;
}

/* Cards */
.ltsmaster_who_card {
  background: #1a1a1a;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ltsmaster_who_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

/* Card Title */
.ltsmaster_who_title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #eec063;
}

/* Card Text */
.ltsmaster_who_text {
  font-size: 1rem;
  color: #ddd;
  text-align: center;
  line-height: 1.5;
}

/* WHO CTA Container */
.who_cta {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* WHO Button */
.who_button {
    background: linear-gradient(90deg, #f3e3c3, #eec063);
  color: #000;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 14px 36px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(238,192,99,0.4);
}

.who_button:hover {
  background: #fff;
  color: #000;
  transform: scale(1.05);
  box-shadow: 0 6px 14px rgba(255,255,255,0.3);
}

/* Responsive Adjustments */
@media (max-width: 1080px) {
  .ltsmaster_who_wrapper {
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .ltsmaster_who_wrapper {
    max-width: 95%;
    padding: 2rem 1rem;
  }

  .ltsmaster_who_heading {
    font-size: 2rem;
  }

  .who_cta {
    flex-direction: column;
  }

  .who_button {
    width: 90%;
    text-align: center;
    font-size: 1rem;
    padding: 12px 20px;
  }
}

@media (max-width: 480px) {
  .ltsmaster_who_wrapper {
    max-width: 80%;
    padding: 2rem 0.5rem;
  }

  .ltsmaster_who_heading {
    font-size: 1.8rem;
  }
}


  .price-lock-section {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
  }
  
  .price-lock-container {
    text-align: center;
    color: #fff;
    max-width: 1100px;
    width: 100%;
  }
  
  .warning-icon {
    width: 100px;
    margin-bottom: 20px;
  }
  
  .warning-label {
    color: #f3e3c3;
    font-weight: 600;
    letter-spacing: 2px;
    margin: 0;
    text-transform: uppercase;
  }
  
  .price-lock-heading {
    font-size: 2rem;
    font-weight: 800;
    margin: 10px 0 20px;
  }
  
  .price-subtext {
    font-size: 1rem;
    color: #aaa;
    margin-bottom: 20px;
  }
  
  .price-description {
    font-size: 0.95rem;
    color: #bbb;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .button-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  
  .price-button {
    padding: 14px 28px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 10px;
    font-size: 1rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease;
    width: auto;
  }
  
  .price-button.primary,
  .price-button.secondary {
    background: #222;
    color: #fff;
    border: 1px solid #555;
  }
  
  .price-button.primary:hover,
  .price-button.secondary:hover {
    background: #f3e3c3;
    color: #000;
  }
  
  /* Tablet and below */
  @media (max-width: 1024px) {
    .price-lock-container {
      max-width: 80%;
      padding: 0 10px;
    }
  
    .price-lock-heading {
      font-size: 1.6rem;
      line-height: 1.3;
    }
  
    .price-description {
      font-size: 0.9rem;
      line-height: 1.5;
      margin-bottom: 24px;
    }
  
    .button-group {
      flex-direction: column;
      align-items: center;
    }
  
    .price-button {
      width: 100%;
      max-width: 280px;
      font-size: 0.95rem;
    }
  }
  
  /* Specific for small tablets */
  @media (max-width: 768px) {
    .price-lock-heading {
      font-size: 1.4rem;
    }
  
    .price-description {
      font-size: 0.88rem;
    }
  }
  
  /* Specific for mobile */
  @media (max-width: 480px) {
    .button-group {
      flex-direction: column;
      align-items: center;
    }
  
    .price-button {
      width: 80%;
      max-width: 280px;
      font-size: 0.9rem;
      padding: 10px 18px;
    }
  }
  body {
    margin: 0;
    padding: 0;
  }
  
  .sysmoneyback_name_section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px 0 20px; /* Removed bottom space */
  }
  
  .sysmoneyback_name_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    max-width: 1100px;
    width: 100%;
    padding: 10px;
    margin: 0 auto 0 auto; /* No bottom margin */
    border-radius: 12px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    gap: 10px;
  }
  
  .sysmoneyback_name_text {
    flex: 1;
    min-width: 300px;
    padding-right: 20px;
    color: #fff;
  }
  
  .sysmoneyback_name_subtitle {
    font-size: 18px;
    font-weight: 600;
  }
  
  .sysmoneyback_name_title {
    font-size: 36px;
    font-weight: bold;
    color: #f3e3c3;
    margin: 10px 0;
  }
  
  .sysmoneyback_name_description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .sysmoneyback_name_icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
  }
  
  .sysmoneyback_name_icon {
    font-size: 14px;
    color: #ffffff;
    background: #222222;
    padding: 10px 14px;
    border-radius: 6px;
  }
  
  .sysmoneyback_name_image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 300px;
  }
  
  .sysmoneyback_name_main-image {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    max-width: none;
    border-radius: 10px;
  }
  
  /* Responsive: Tablets */
  @media (max-width: 1024px) {
    .sysmoneyback_name_container {
      width: 80%;
      padding: 30px;
    }
  
    .sysmoneyback_name_title {
      font-size: 32px;
    }
  
    .sysmoneyback_name_description {
      font-size: 15px;
    }
  }
  
  /* Responsive: Tablets & Mobile */
  @media (max-width: 767px) {
    .sysmoneyback_name_container {
      flex-direction: column;
      width: 80%;
      text-align: center;
      padding: 25px;
    }
  
    .sysmoneyback_name_text {
      padding-right: 0;
    }
  
    .sysmoneyback_name_title {
      font-size: 28px;
    }
  
    .sysmoneyback_name_description {
      font-size: 14px;
    }
  
    .sysmoneyback_name_icons {
      justify-content: center;
    }
  
    .sysmoneyback_name_main-image {
      max-width: 320px;
    }
  }
  
  /* Responsive: Small Devices */
  @media (max-width: 480px) {
    .sysmoneyback_name_container {
      width: 80%;
      padding: 15px;
      gap: 15px;
    }
  
    .sysmoneyback_name_title {
      font-size: 24px;
      margin-bottom: 8px;
    }
  
    .sysmoneyback_name_description {
      font-size: 13px;
      line-height: 1.4;
    }
  
    .sysmoneyback_name_icon {
      font-size: 13px;
      padding: 6px 10px;
    }
  
    .sysmoneyback_name_main-image {
      max-width: 100%;
      aspect-ratio: 1 / 1;
    }
  }
  
.cmembership_section {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
    padding: 4rem 5%;
    color: #fff;
    display: flex;
    justify-content: center;
  }
  
  .cmembership_container {
    background-color: #35343477;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    background: url('your-pattern-image.png'); /* Replace or remove as needed */
    background-size: cover;
    background-position: center;
    border: 1px solid #ccc;
    border-radius: 1rem;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
  }
  
  .cmembership_title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
  }
  
  .cmembership_highlight {
    background: #d5f7a4;
    padding: 0 0.3rem;
    border-radius: 4px;
  }
  
  .cmembership_subtitle {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 2rem;
  }
  
  /* ===== Form Styling ===== */
  .formcontainer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  
  .formcontainer form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 500px;
  }
  
  .formcontainer input,
  .formcontainer textarea {
    padding: 0.8rem 1rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 30px;
    width: 100%;
    box-sizing: border-box;
    transition: 0.3s ease;
  }
  
  .formcontainer textarea {
    border-radius: 1rem;
    resize: none;
  }
  
  .formcontainer input:focus,
  .formcontainer textarea:focus {
    border-color: #aaa;
    outline: none;
  }
  
  /* Submit Button */
  #submit {
    background: #000;
    color: #fff;
    cursor: pointer;
    transition: 0.3s ease;
  }
  
  #submit:hover {
    background: #333;
  }
  
  .form-message {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: green;
  }
  
  /* ===== Responsive Breakpoints ===== */
  @media (max-width: 1024px) {
    .cmembership_section{
        max-width: 80%;
        margin: 0 auto;

    }
    .cmembership_title {
      font-size: 1.75rem;
    }
  
    .formcontainer form {
      max-width: 90%;
    }
  }
  
  @media (max-width: 768px) {
    .cmembership_section{
        max-width: 80%;
        margin: 0 auto;
    }
    .cmembership_title {
      font-size: 1.5rem;
    }
  
    .formcontainer input,
    .formcontainer textarea {
      font-size: 0.95rem;
    }
  }
  
  @media (max-width: 480px) {
    .cmembership_section{
        max-width: 80%;
        margin: 0 auto;
    }
    .cmembership_title {
      font-size: 1.3rem;
    }
  
    .formcontainer input,
    .formcontainer textarea {
      padding: 0.7rem;
    }
  }