
  .ous-about-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 60px;
    color: #222;
    font-family: Arial, sans-serif;
    line-height: 1.8;
  }

  .ous-about-page * {
    box-sizing: border-box;
  }

  .ous-about-hero {
    text-align: center;
    padding: 30px 20px 40px;
    background: linear-gradient(135deg, #f7f1ea 0%, #fff 100%);
    border-radius: 16px;
    margin-bottom: 30px;
  }

  .ous-about-hero h1 {
    margin: 0 0 12px;
    font-size: 40px;
    line-height: 1.2;
    color: #111;
  }

  .ous-about-hero p {
    max-width: 820px;
    margin: 0 auto;
    font-size: 17px;
    color: #555;
  }

  .ous-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
  }

  .ous-about-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    padding: 28px;
  }

  .ous-about-card h2 {
    margin: 0 0 14px;
    font-size: 26px;
    line-height: 1.3;
    color: #111;
  }

  .ous-about-card p {
    margin: 0 0 14px;
    font-size: 16px;
    color: #444;
  }

  .ous-about-card p:last-child {
    margin-bottom: 0;
  }

  .ous-about-list {
    margin: 14px 0 0;
    padding-left: 20px;
  }

  .ous-about-list li {
    margin-bottom: 8px;
    color: #444;
    font-size: 16px;
  }

  .ous-about-section {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    padding: 30px;
    margin-bottom: 24px;
  }

  .ous-about-section h2 {
    margin: 0 0 16px;
    font-size: 28px;
    color: #111;
  }

  .ous-about-section p {
    margin: 0 0 14px;
    font-size: 16px;
    color: #444;
  }

  .ous-choose-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-top: 20px;
  }

  .ous-choose-item {
    background: #faf7f3;
    border: 1px solid #eee3d6;
    border-radius: 12px;
    padding: 18px 14px;
    text-align: center;
    font-size: 15px;
    color: #333;
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .ous-timeline {
    position: relative;
    margin-top: 20px;
    padding-left: 24px;
    border-left: 2px solid #d8c1a6;
  }

  .ous-timeline-item {
    position: relative;
    padding: 0 0 24px 20px;
  }

  .ous-timeline-item:last-child {
    padding-bottom: 0;
  }

  .ous-timeline-item:before {
    content: "";
    position: absolute;
    left: -31px;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #c58b54;
  }

  .ous-timeline-year {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: bold;
    color: #111;
  }

  .ous-timeline-item p {
    margin: 0;
    color: #444;
    font-size: 16px;
  }

  .ous-about-cta {
    text-align: center;
    padding: 34px 20px;
    background: #111;
    color: #fff;
    border-radius: 16px;
    margin-top: 10px;
  }

  .ous-about-cta h2 {
    margin: 0 0 12px;
    font-size: 30px;
    color: #fff;
  }

  .ous-about-cta p {
    max-width: 760px;
    margin: 0 auto 18px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.88);
  }

  .ous-about-cta a {
    display: inline-block;
    padding: 12px 28px;
    background: #c58b54;
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    font-size: 15px;
    font-weight: bold;
  }

  .ous-about-cta a:hover {
    background: #ad7441;
    color: #fff;
  }

  @media (max-width: 991px) {
    .ous-about-grid {
      grid-template-columns: 1fr;
    }

    .ous-choose-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .ous-about-hero h1 {
      font-size: 32px;
    }
  }

  @media (max-width: 575px) {
    .ous-about-page {
      padding: 24px 14px 40px;
    }

    .ous-about-hero {
      padding: 24px 16px 30px;
    }

    .ous-about-hero h1 {
      font-size: 28px;
    }

    .ous-about-card,
    .ous-about-section {
      padding: 22px 18px;
    }

    .ous-choose-grid {
      grid-template-columns: 1fr;
    }

    .ous-about-cta h2 {
      font-size: 24px;
    }
  }
