   /* Main content box */
   .content-box {
    width: 100%;
    max-width: 1400px;
    background: linear-gradient(135deg, #5f47eb 0%, #30a7e8 100%);
    border-radius: 16px;
    overflow: hidden;
    padding: 60px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
  }

  /* Responsive adjustments */
  @media (max-width: 992px) {
    .content-box {
      padding: 50px 30px;
    }
  }

  @media (max-width: 768px) {
    .content-box {
      padding: 40px 20px;
      border-radius: 12px;
    }
  }

  @media (max-width: 576px) {
    .content-box {
      padding: 30px 15px;
    }
  }

  /* Example content styling - you can replace this with your actual content */
  .content-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
  }

  .content-subtitle {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 40px;
    opacity: 0.9;
  }

  /* Placeholder for your content */
  .your-content {
    /* Your content styles will go here */
    width: 100%;
    min-height: 200px;
  }