.page-layout {
  display: flex;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  margin-bottom: 50px;
}
.sidebar {
  flex: 0 0 220px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px #0001;
  padding: 32px 18px 24px 18px;
  min-width: 180px;
  max-height: fit-content;
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s;
}
.sidebar:hover {
  box-shadow: 0 8px 32px rgba(37,99,235,0.18);
}
.sidebar h2 {
  font-size: 1.3rem;
  margin-bottom: 22px;
  border-bottom: 2px solid rgba(151,4,4,0.13);
  padding-bottom: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  width: 100%;
  text-align: left;
  color: #970404;
}
.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
.sidebar ul li {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
}
.sidebar ul li:last-child {
  margin-bottom: 0;
}
.sidebar ul li a {
  color: #970404;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.08rem;
  padding: 10px 16px 10px 32px;
  border-radius: 8px;
  position: relative;
  display: block;
  width: 100%;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.sidebar ul li a:hover, .sidebar ul li a:focus {
  background: #fbeaea;
  color: #d91313;
  box-shadow: 0 2px 8px rgba(151,4,4,0.08);
  outline: none;
}
@media (max-width: 900px) {
  .page-layout {
    flex-direction: column;
    gap: 0;
    padding: 0 4px;
  }
  .sidebar {
    width: 100%;
    margin-top: 24px;
    align-items: stretch;
    min-width: unset;
    margin-bottom: 24px;
  }
}
.about-hero {
      min-height: 320px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #00000;
      position: relative;
      box-shadow: 0 8px 32px rgba(37,99,235,0.10);
      margin-bottom: 32px;);
      margin-top: 20px;
}
.about-hero::before {
    content: "";
      position: absolute;
      inset: 0;
      background: #fff;
      z-index: 1;
}
.about-hero-content {
  position: relative;
  z-index: 2;
  padding: 48px 24px 36px 24px;
  max-width: 800px;
}
.about-hero-content h1 {
  font-size: 2.6rem;
  font-family: 'Poppins', 'Inter', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 14px;
  margin-top: 150px;
  letter-spacing: 1px;
}
.about-hero-content p {
  font-size: 1.18rem;
  font-weight: 500;
  opacity: 0.96;
  text-shadow: 0 1px 8px #0004;
}
.about-section {
  max-width: 1100px;
  margin: 48px auto 0 auto;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 24px #0001;
  padding: 48px 32px;
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.about-text {
  flex: 2;
  min-width: 260px;
}
.about-text h2 {
  font-size: 2rem;
  font-family: 'Poppins', 'Inter', Arial, sans-serif;
  color: #970404;
  font-weight: 700;
  margin-bottom: 18px;
}
.about-text p {
  font-size: 1.08rem;
  color: #444;
  margin-bottom: 18px;
  line-height: 1.8;
}
.about-img {
  flex: 1;
  min-width: 220px;
  max-width: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 4px 24px #0002;
}
.about-values {
  margin-top: 36px;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.value-box {
  background: #f8fafc;
  border-radius: 14px;
  box-shadow: 0 2px 12px #0001;
  padding: 22px 18px;
  flex: 1 1 180px;
  min-width: 180px;
  text-align: center;
}
.value-box i {
  font-size: 2rem;
  color: #970404;
  margin-bottom: 10px;
}
.value-box h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #970404;
}
.value-box p {
  font-size: 0.98rem;
  color: #555;
  margin: 0;
}
@media (max-width: 900px) {
  .about-section {
    flex-direction: column;
    gap: 24px;
    padding: 32px 10px;
  }
  .about-img {
    max-width: 100%;
  }
}