.page-content { padding: 2rem 0 4rem; }

    .breadcrumbs {
      font-size: 0.95rem;
      color: #555;
      margin-bottom: 2rem;
    }
    .breadcrumbs a { color: var(--color-dark); font-weight: 600; }
    .breadcrumbs .current { color: var(--color-primary); font-weight: 600; }

    .about-intro {
      background: #fff;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 8px 30px rgba(0, 26, 65, 0.08);
    }
    .about-intro-img {
      background: linear-gradient(180deg, #d8e9fb 0%, #bfd2f8 100%);
      padding: 1.5rem;
      height: 100%;
      display: flex;
      align-items: flex-end;
      justify-content: center;
    }
    .about-intro-img img {
      width: 100%;
      max-width: 380px;
      height: auto;
      display: block;
      border-radius: 12px;
    }
    .about-intro-text {
      padding: 2rem 2rem 2.5rem;
    }
    .about-intro-text h2 {
      color: var(--color-dark);
      font-weight: 700;
      font-size: clamp(1.5rem, 3vw, 2rem);
      margin-bottom: 0.75rem;
    }
    .about-intro-text p { line-height: 1.7; margin-bottom: 1rem; }

    .content-block {
      background: #fff;
      border-radius: 20px;
      padding: 2.5rem;
      margin-top: 2rem;
      box-shadow: 0 4px 20px rgba(0, 26, 65, 0.06);
    }
    .content-block h2 {
      color: var(--color-dark);
      font-weight: 700;
      font-size: clamp(1.4rem, 2.5vw, 1.875rem);
      margin-bottom: 1.25rem;
    }
    .content-block p { line-height: 1.75; margin-bottom: 1rem; }
    .content-block ol {
      padding-left: 1.25rem;
      margin-bottom: 0;
    }
    .content-block ol li {
      margin-bottom: 1.25rem;
      line-height: 1.65;
    }
    .content-block ol li:last-child { margin-bottom: 0; }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 16px;
      margin-top: 1.5rem;
    }
    .gallery-item {
      display: block;
      border-radius: 14px;
      overflow: hidden;
      aspect-ratio: 4/3;
      background: #d8e9fb;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }
    .gallery-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 28px rgba(0, 26, 65, 0.15);
    }
    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

@media (max-width: 991px) {
  .about-intro-text { padding: 1.75rem 1.5rem 2rem; }
  .content-block { padding: 1.75rem 1.5rem; }
}

@media (max-width: 576px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}