
  .custom-options-section {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 70px 0;
    background: #ffffff;
    box-sizing: border-box;
  }

  .custom-options-section * {
    box-sizing: border-box;
  }

  /* H2 Title */
  .custom-options-title {
    margin: 0 0 18px 0;
    padding: 0;
    color: #000000;
    font-family: "Readex Pro", sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.25;
    text-align: left;
  }

  /* Description */
  .custom-options-intro {
    max-width: 1100px;
    margin: 0 0 45px 0;
    padding: 0;
    color: #000000;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    text-align: left;
  }

  /* Cards Grid */
  .custom-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 0;
    padding: 0;
  }

  /* Card */
  .custom-option-card {
    position: relative;
    min-height: 230px;
    padding: 32px 30px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  .custom-option-card:hover {
    transform: translateY(-4px);
    border-color: #000000;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  }

  /* Number */
  .custom-option-number {
    margin: 0 0 18px 0;
    padding: 0;
    color: #777777;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1px;
  }

  /* H3 */
  .custom-option-card h3 {
    margin: 0 0 14px 0;
    padding: 0;
    color: #000000;
    font-family: "Readex Pro", sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.35;
  }

  /* Body */
  .custom-option-card p {
    margin: 0;
    padding: 0;
    color: #000000;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
  }

  /* Tablet */
  @media screen and (max-width: 991px) {
    .custom-options-section {
      padding: 50px 25px;
    }

    .custom-options-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  /* Mobile */
  @media screen and (max-width: 600px) {
    .custom-options-section {
      padding: 40px 20px;
    }

    .custom-options-title {
      font-size: 30px;
      margin-bottom: 16px;
    }

    .custom-options-intro {
      font-size: 16px;
      margin-bottom: 30px;
    }

    .custom-options-grid {
      grid-template-columns: 1fr;
      gap: 18px;
    }

    .custom-option-card {
      min-height: auto;
      padding: 26px 24px;
    }

    .custom-option-card h3 {
      font-size: 22px;
    }

    .custom-option-card p {
      font-size: 16px;
    }
  }
