.case-layout {
    width: 100%;
    /* margin: 60px auto 0 auto;
    max-width: 1200px; */
    margin-top: 3rem;
  }
  .case-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 100px;
  }
  .case-row.reverse {
    flex-direction: row-reverse;
  }
  .case-text {
    flex: 1;
    padding: 40px;
  }
  .case-text h4 {
    color: #888;
    font-size: 18px;
    margin-bottom: 10px;
  }
  .case-text h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  .case-text p {
    color: #666;
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.7;
  }
  .case-btn {
    display: inline-block;
    background: #d20031;
    color: #fff;
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 18px;
    text-decoration: none;
    transition: background 0.2s;
    border: 1px solid #d20031;
  }
  .case-btn:hover {
    background: #fff;
    border: 1px solid #d20031;
    color: #111;
  }
  .case-img {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .case-img img {
    max-width: 90%;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  }
  @media (max-width: 900px) {
    .case-row, .case-row.reverse {
      flex-direction: column !important;
      text-align: center;
    }
    .case-text, .case-img {
      padding: 20px 0;
    }
  }