/* =========================
   About Page Content
   ========================= */
.about-page {
  padding: 60px 0;
}

.about-page-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-page-inner p {
  margin-bottom: 50px;
}

.about-page-inner img {
  width: 100%;
  height: auto;
}

/* =========================
   Expertise Section
   ========================= */
.about-expertise {
  padding: 60px 0;
}

.about-expertise img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 40px auto 0;
  border-radius: 8px;
}

/* =========================
   Branches Section
   ========================= */
.about-branches {
  padding: 60px 0;
}

.branches-inner {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.branch {
  position: relative;
  height: 420px;
  overflow: hidden;
  margin-top: 60px;
}

.branch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.branch::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.branch-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.branch-overlay h3 {
  color: #fff;
  font-size: 28px;
}

.branch-text {
  text-align: center;
  max-width: 520px;
  padding: 20px;
}

.branch-text h3 {
  margin-bottom: 14px;
  font-size: 22px;
}

.branch-text p {
  font-size: 14px;
  line-height: 1.6;
  color: #dddddd;
}

/* =========================
   What We Offer Section
   ========================= */
.what-we-offer {
  padding: 60px 0;
}

.what-we-offer .section-title {
  margin-bottom: 80px;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 40px;
  align-items: center;
}

.offer-text h3 {
  margin-bottom: 12px;
}

.offer-image img {
  width: 100%;
  height: auto;
}

/* =========================
   Responsive (about)
   ========================= */
@media (max-width: 768px) {
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .branch {
    height: 300px;
  }
}
