:root {
  --about-navy: #071732;
  --about-yellow: #e7b750;
  --about-yellow-soft: #f8edd0;
  --about-bg-soft: #f8f9fb;
  --about-text: #334155;
  --about-shadow: 0 15px 38px rgba(7, 23, 50, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  color: var(--about-text);
  line-height: 1.7;
  background-color: #ffffff;
  font-size: 16px;
  margin: 0;
  padding: 0;
}

.container_aboutus {
  overflow-x: hidden;
}

/* Keep banner concept intact, only polish spacing/overlay. */
.header_container {
  position: relative;
  width: 100%;
  min-height: 460px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--about-navy);
}

.header_container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(231, 183, 80, 0.45) 0%,
    rgba(247, 197, 101, 0.35) 100%
  );
  z-index: 1;
}

.header_container::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 70px;
  background: #fff;
  clip-path: ellipse(55% 100% at 50% 100%);
  z-index: 1;
}

.header_container img.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.36;
}

.page_title {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 24px 26px;
  backdrop-filter: blur(2px);
  animation: bannerPanUp 0.72s ease both;
}

.page-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 1.1rem;
  padding: 0.32rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
}

.page_title h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  color: #f8f9fa;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0;
}

.page-subtext {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 500px;
  margin: 1rem auto 0;
  line-height: 1.6;
}

@keyframes bannerPanUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page_title h1 span {
  color: var(--about-yellow);
  font-weight: 700;
}

.content {
  width: min(1120px, 92vw);
  margin: 82px auto;
  padding: 0;
}

.content.organization,
.content.vision_mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}

.content.organization .text_content,
.content.vision_mission .text_content {
  min-width: 0;
}

.content.organization h2,
.content.vision_mission h2,
.content.intro .text_content h2,
.section_title h2,
.contact_section h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  color: var(--about-navy);
  margin: 0 0 1.2rem;
  position: relative;
}

.content.organization h2::after,
.content.vision_mission h2::after,
.content.intro .text_content::after,
.section_title h2::after,
.contact_section h2::after {
  content: "";
  display: block;
  width: 58px;
  height: 3px;
  background-color: var(--about-yellow);
  margin-top: 12px;
}

.content.organization p,
.content.vision_mission p,
.bio_details p {
  text-align: justify;
  margin: 0 0 0.95rem;
  color: #4b5563;
}

.content.organization .img_content,
.content.vision_mission .img_content {
  display: flex;
  justify-content: center;
}

.content.organization img,
.content.vision_mission img {
  width: 100%;
  max-width: 520px;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--about-shadow);
}

.intro_statement {
  background: linear-gradient(135deg, #0d2447 0%, var(--about-navy) 100%);
  width: 100%;
  margin: 0;
  padding: 78px 10%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.intro_statement h1 {
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  font-weight: 500;
  color: var(--about-yellow);
  max-width: 920px;
  line-height: 1.7;
  margin: 0;
}

.content.intro {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 14px 36px rgba(7, 23, 50, 0.09);
  padding: 34px 36px;
  display: block;
}

.content.intro .bio_intro {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

.content.intro .img_content {
  width: 100%;
  margin: 0;
}

.content.intro .img_content img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow:
    0 0 0 4px #fff,
    0 0 0 10px var(--about-yellow-soft);
}

.content.intro .text_content {
  margin: 0;
  min-width: 0;
}

.content.intro .text_content h2 {
  margin-bottom: 0.7rem;
}

.content.intro .text_content h3 {
  font-size: 0.82rem;
  color: #8e650d;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.11em;
  margin-bottom: 0.3rem;
}

.content.intro .text_content::after {
  margin-top: 16px;
  margin-bottom: 16px;
}

.bio_details {
  margin-top: 1.2rem;
  padding: 0;
  font-size: 0.97rem;
  line-height: 1.85;
}

.content.vision_mission {
  grid-template-columns: 1fr 1fr;
  background: var(--about-bg-soft);
  border-radius: 16px;
  padding: 42px;
  box-shadow: 0 12px 28px rgba(7, 23, 50, 0.08);
}

.content.vision_mission h3 {
  font-size: 1.1rem;
  color: #8e650d;
  margin: 1.15rem 0 0.5rem;
  font-weight: 700;
}

.practice_section_container {
  width: min(1120px, 92vw);
  margin: 86px auto;
  padding: 0;
}

.section_title {
  text-align: center;
  margin-bottom: 44px;
}

.section_title h2::after {
  margin: 14px auto 0;
}

.practice_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.practice_card {
  background: #fff;
  padding: 30px 24px;
  border: 1px solid #eadfbf;
  border-top: 4px solid var(--about-yellow);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(7, 23, 50, 0.08);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.practice_card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(7, 23, 50, 0.12);
}

.practice_card h3 {
  font-size: 1.08rem;
  color: var(--about-navy);
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #efe7cf;
}

.practice_card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.practice_card ul li {
  font-size: 0.9rem;
  color: #4b5563;
  margin-bottom: 8px;
  padding-left: 18px;
  position: relative;
  line-height: 1.55;
}

.practice_card ul li::before {
  content: "\203A";
  color: #b2851f;
  font-weight: 700;
  font-size: 1.15rem;
  position: absolute;
  left: 0;
  top: -2px;
}

.contact_section {
  width: min(1120px, 92vw);
  margin: 0 auto 88px;
  padding: 56px 26px;
  background: linear-gradient(140deg, #f9f3df 0%, #f5ebcb 100%);
  border: 1px solid #ecdcae;
  border-radius: 16px;
  text-align: center;
}

.contact_section h2 {
  display: inline-block;
}

.contact_section h2::after {
  margin: 10px auto 0;
}

.contact_details {
  margin-top: 26px;
}

.contact_details p {
  font-size: 1.02rem !important;
  margin-bottom: 7px;
  color: #334155;
}

.separator_text {
  margin: 24px 0;
  font-style: italic;
  color: #7c6b45;
}

.appointment_button {
  display: inline-block;
  background: var(--about-navy);
  color: var(--about-yellow);
  padding: 14px 32px;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid #c7962c;
  font-weight: 700;
  transition: all 0.25s ease;
}

.appointment_button:hover {
  background: var(--about-yellow);
  color: var(--about-navy);
  transform: translateY(-2px);
  text-decoration: none;
}

@media (max-width: 1024px) {
  .practice_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .content.organization,
  .content.vision_mission {
    gap: 34px;
  }
}

@media (max-width: 900px) {
  .content {
    margin: 64px auto;
  }

  .content.organization,
  .content.vision_mission {
    grid-template-columns: 1fr;
  }

  .content.intro {
    padding: 28px 22px;
  }

  .content.intro .bio_intro {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .content.intro .img_content img {
    min-height: 280px;
  }

  .bio_details {
    margin-top: 14px;
    padding-top: 14px;
  }

  .practice_grid {
    grid-template-columns: 1fr;
  }

  .page_title h1 {
    font-size: clamp(2rem, 9vw, 2.7rem);
  }

  .intro_statement {
    padding: 56px 8%;
  }
}

@media (max-width: 580px) {
  .header_container {
    min-height: 380px;
  }

  .page_title {
    padding: 18px 16px;
  }

  .contact_section {
    padding: 42px 18px;
  }
}
