/* ---------- About Page ---------- */
.page-hero {
  position: relative;
  margin-top: 100px;
  height: 520px;
  overflow: hidden;
  max-width: 2000px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.50);
}

.page-hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.page-hero-content h1 {
  font-size: 44px;
  font-weight: 500;
  margin: 0 0 12px;
}

.page-hero-content p {
  font-size: 16px;
  max-width: 720px;
  opacity: 0.92;
  line-height: 1.7;
  margin: 0;
}

.section {
  background: #f6f8f7;
  padding: 110px 20px;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: #2b6d42;
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: 36px;
  font-weight: 500;
  color: #1f3d2b;
  margin: 0 0 18px;
  line-height: 1.25;
}

.section-text p {
  font-size: 16px;
  line-height: 1.75;
  color: #555;
  margin: 0 0 14px;
}

.image-card img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
  display: block;
}

.cards {
  background: #fff;
  padding: 90px 20px;
}

.cards-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.cards-head {
  text-align: center;
  margin-bottom: 45px;
}

.cards-head h2 {
  font-size: 34px;
  font-weight: 500;
  color: #1f3d2b;
  margin: 0 0 10px;
}

.cards-head p {
  color: #666;
  font-size: 15px;
  margin: 0 auto;
  max-width: 720px;
  line-height: 1.7;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.info-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  padding: 26px 22px;
  transition: 0.3s;
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.info-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(43, 109, 66, 0.12);
  color: #2b6d42;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  font-size: 18px;
}

.info-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  color: #1f3d2b;
  font-weight: 600;
}

.info-card p {
  margin: 0;
  color: #555;
  font-size: 15px;
  line-height: 1.7;
}

.cta-band {
  background: #2b6d42;
  color: #fff;
  padding: 70px 20px;
}

.cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 30px;
  align-items: center;
}

.cta-inner h2 {
  margin: 0;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.25;
}

.cta-inner p {
  margin: 10px 0 0;
  opacity: 0.9;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  justify-content: flex-end;
}

.cta-actions a {
  background: #ffffff;
  color: #1f3d2b;
  padding: 14px 26px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.25s;
}

.cta-actions a:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 34px; }
  .card-grid { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-actions { justify-content: flex-start; }
}

@media (max-width: 768px) {

  /* --- Page hero --- */
  .page-hero {
    margin-top: 70px;
    height: 260px;
  }
  .page-hero-content h1 { font-size: 26px; }

  /* --- Section (Cine suntem) --- */
  /* --- Section (Cine suntem) - MODIFICAT --- */
  .section { padding: 40px 16px; }

  /* Ascundem complet cardul cu imaginea pe mobil */
  .image-card {
    display: none;
  }

  /* Resetăm restul proprietăților pentru a lăsa textul să curgă normal */
  .section-inner.split {
    display: block;
    padding: 0;
  }

  .section-text {
    background: transparent;
    margin: 0;
    padding: 0;
    box-shadow: none;
    position: static;
  }

  .section-title { font-size: 22px; margin-bottom: 14px; }
  .section-text p { font-size: 14px; margin-bottom: 12px; }

 /* --- Cards (Valorile noastre) --- */
  .cards { padding: 40px 16px; }
  
  .card-grid {
    grid-template-columns: 1fr; /* O singură coloană pe mobil */
    gap: 20px;
  }

  .info-card { 
    padding: 30px 20px; 
    display: flex;
    flex-direction: column;
    align-items: center; /* Centrează orizontal iconița/emoji și textele */
    text-align: center;  /* Aliniază textul pe centru */
  }

  /* Resetăm regula pentru ultimul element care era setat să ocupe 2 coloane */
  .info-card:last-child {
    grid-column: auto;
    max-width: 100%;
    margin: 0;
  }

  .info-card .icon {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 16px;
  }

  /* --- CTA band --- */
  .cta-band { padding: 44px 16px; }
  .cta-inner h2 { font-size: 22px; }
  .cta-inner p { font-size: 14px; }
}