/* ===== Shared Section Wrapper ===== */
.chero_section,
.ctrust_section {
  padding: 2rem 5%;
  display: flex;
  justify-content: center;
}

/* ===== Container ===== */
.chero_container,
.ctrust_container {
  max-width: 1100px;
  width: 80%;
  margin: 0 auto;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

/* ===== Left Side (Text Content) ===== */
.chero_left {
  flex: 1 1 500px;
}

.chero_badge {
  background-color: #f3e3c31c;
  color: #f3e3c3;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  display: inline-block;
  margin-bottom: 1rem;
}

.chero_title {
  font-size: 2.5rem;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.chero_blue,
.chero_green {
  color: #f3e3c3;
}

.chero_plus {
  font-weight: bold;
  font-size: 2rem;
}

.chero_text {
  margin-bottom: 1.5rem;
  color: #f3e3c3;
}

.chero_button {
  background: linear-gradient(90deg, #f3e3c3, #eec063);
  color: #000;
  padding: 12px 28px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}
.chero_button:hover{
  background: linear-gradient(90deg, #eec063, #f3e3c3);

}

/* ===== Right Side (Image Box) ===== */
.chero_right {
  flex: 1 1 100px;
  margin-top: 0; /* ensure no vertical gap */
}

.chero_imagebox {
  position: relative;
  margin-top: 0.5rem;
}

.chero_imagebox img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

.chero_tag {
  position: absolute;
  bottom: -15px;
  left: 15px;
  background-color: #eec063;
  color: #000;
  padding: 0.4rem 0.8rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* ===== Responsive Breakpoints ===== */

/* Tablets and below (1024px) */
@media (max-width: 1024px) {
  .chero_title {
    font-size: 2rem;
  }

  .chero_text {
    font-size: 0.95rem;
  }

  .chero_container {
    gap: 1.5rem;
  }
}

/* Tablets and large phones (768px) */
@media (max-width: 768px) {
    .chero_container {
      flex-direction: column;       /* stack vertically */
      align-items: center;
      text-align: center;
      gap: 2rem;                     /* controls spacing between text and image */
      width: 85%;
    }
  
    .chero_left,
    .chero_right {
      width: 100%;                  /* ensure full width stack */
      flex: unset;
    }
  
    .chero_right {
      display: flex;
      justify-content: center;
    }
  
    .chero_imagebox {
      width: 100%;
      max-width: 400px;
    }
  
    .chero_imagebox img {
      width: 100%;
      height: auto;
      display: block;
    }
  }
  

/* Mobile phones (480px) */
@media (max-width: 480px) {
  .chero_container {
    gap: 0.7rem;
  }

  .chero_title {
    font-size: 1.5rem;
  }

  .chero_text {
    font-size: 0.9rem;
  }

  .chero_button {
    width: 100%;
    padding: 0.7rem;
  }

  .chero_tag {
    font-size: 0.75rem;
    padding: 0.3rem 0.7rem;
  }

  .chero_imagebox {
    margin-top: 0.3rem;
  }
}
.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;
  }
}


/* ===== Section Wrapper ===== */
.cfeature_section {
    display: flex;
    justify-content: center;
  }
  
  /* ===== Container ===== */
  .cfeature_container {
    max-width: 1100px;
    width: 80%;
    margin: 0 auto;
    color: #fff;
    text-align: center;
  }
  
  /* ===== Headings ===== */
  .cfeature_title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .cfeature_subtitle {
    color: #aaa;
    font-size: 1rem;
    margin-bottom: 3rem;
  }
  
  /* ===== Feature Grid ===== */
  .cfeature_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  
  /* ===== Card ===== */
  .cfeature_card {
    background-color: #1a1a1a;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: left;
    transition: background-color 0.3s ease, color 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .cfeature_card:hover {
    background-color: #f3e3c3;
    color: #000;
  }
  
  .cfeature_card-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
  }
  
  .cfeature_card-text {
    font-size: 0.95rem;
    color: inherit;
  }
  
  /* ===== Responsive Styles ===== */
  
  /* Tablets - max 1024px */
  @media (max-width: 1024px) {
    .cfeature_title {
      font-size: 2rem;
    }
  
    .cfeature_grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }
  }
  
  /* Tablets & Large Phones - max 768px */
  @media (max-width: 768px) {
    .cfeature_title {
      font-size: 1.75rem;
    }
  
    .cfeature_subtitle {
      font-size: 0.95rem;
      margin-bottom: 2rem;
    }
  
    .cfeature_grid {
      grid-template-columns: 1fr;
      gap: 1.2rem;
    }
  
    .cfeature_card {
      text-align: center;
      align-items: center;
    }
  
    .cfeature_card-text {
      text-align: center;
    }
  }
  
  /* Mobile - max 480px */
  @media (max-width: 480px) {
    .cfeature_title {
      font-size: 1.5rem;
    }
  
    .cfeature_card {
      padding: 1rem;
    }
  
    .cfeature_card-title {
      font-size: 1rem;
    }
  
    .cfeature_card-text {
      font-size: 0.9rem;
    }
  }
  
/* Section */
.sysmoneyback_name_section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
}

/* Container */
.sysmoneyback_name_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch; /* Ensures image and text are equal height */
    max-width: 1100px;
    width: 100%; /* Restrict width to 80% */
    padding: 40px;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    gap: 30px;
}

/* Text Content */
.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;
}

/* Icons (or buttons) */
.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;
}

/* Image Content */
.sysmoneyback_name_image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 200px;
}

.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: 85%;
        padding: 30px;
        margin: 0 auto;
    }

    .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;
    }
}


/* ===== Membership Section ===== */
.cmembership_section {
      max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding: 2rem 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;
    }
  }
  