 /* CSS from section:DailyPack */
#daily-pack {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    box-sizing: border-box;
  }

  .daily-pack-container {
    background-color: #ffffff;
    border-radius: 24px;
    box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.1), 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 1440px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 41px 40px 77px;
    box-sizing: border-box;
    text-align: center;
  }

  .main-title {
    color: #000000;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 36px;
    /* The provided line-height of 24px is smaller than the font-size, which would cause text to overlap. Using a standard value for readability. */
    line-height: 1.4;
    margin: 0;
  }

  .subtitle {
    color: #000000;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 36px;
    /* The provided line-height of 24px is smaller than the font-size, which would cause text to overlap. Using a standard value for readability. */
    line-height: 1.4;
    margin: 16px 0 0 0; /* A reasonable margin between the lines, more readable than the multiple newlines in the source data. */
    max-width: 743px;
  }

  .product-image {
    margin-top: 55px; /* Calculated from vertical spacing in Figma */
    width: 482px;
    max-width: 100%;
    height: auto;
    display: block;
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .daily-pack-container {
      padding: 30px 20px 50px;
    }

    .main-title,
    .subtitle {
      font-size: 28px;
    }
  }

  @media (max-width: 480px) {
    #daily-pack {
      padding: 40px 15px;
    }

    .daily-pack-container {
      padding: 24px 15px 40px;
    }

    .main-title,
    .subtitle {
      font-size: 22px;
    }

    .subtitle {
      margin-top: 12px;
    }

    .product-image {
      margin-top: 40px;
    }
  }
