article{ max-width:940px; margin:0 auto; padding:32px 16px 40px; }
h1{ font-size:2rem; font-weight:700; color:#003366; margin:0 0 18px; text-align:center; }

.lead, article p { font-size:1.05rem; line-height:1.75; color:#222; text-align:justify; }

.hero{ margin:20px 0 30px; }
.hero-frame{ position:relative; width:100%; height:450px; overflow:hidden; border-radius:5px; }
.hero img{ width:100%; height:100%; object-fit:cover; display:block; }
.caption{
  position:absolute; left:0; right:0; bottom:0; padding:10px 16px;
  text-align:center; color:#fff; font-weight:600;
  background:linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.55) 70%, rgba(0,0,0,.75) 100%);
  font-size:.95rem; border-radius:0 0 10px 10px;
}

.about-home {
  background: #f9fafb;
  padding: 10px 5px;
  margin: 40px auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.about-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
  gap: 40px;
}

.about-left h2 {
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #0073b1;
  margin: 0;
  position: relative;
}

.about-left h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #0073b1;
  margin-top: 8px;
  border-radius: 2px;
}

.about-right {
  flex: 3;
  font-family: "Segoe UI", Arial, sans-serif;
}

.about-right p {
  margin: 0 0 18px;
  line-height: 1.7;
  font-size: 1.05rem;
  color: #333;
}

.btn-readmore {
  display: inline-block;
  padding: 10px 26px;
  border-radius: 6px;
  background: #0073e6;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-family: "Segoe UI", Arial, sans-serif;
  transition: background 0.2s ease, transform 0.15s ease;
}

.btn-readmore:hover {
  background: #005bb5;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .about-inner {
    flex-direction: column;
    text-align: center;
  }
  .about-left h2::after {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 600px) {
  .about-right p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .about-right strong {
    font-size: 1rem;
    color: #0073b1;
  }

  .btn-readmore {
    padding: 8px 20px;
    font-size: 0.9rem;
  }
}


.commitments { margin-top:50px; }
.commitments h2{ text-align:center; font-size:1.7rem; color:#0099cc; margin:0 0 28px; }
.commit-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:24px; }
.commit-item{
  background:#f9fafb; border:1px solid #e5e7eb; border-radius:12px; padding:22px 18px; text-align:center;
  transition:transform .2s ease, box-shadow .2s ease;
}
.commit-item:hover{ transform:translateY(-5px); box-shadow:0 8px 18px rgba(0,0,0,.08); }
.commit-item .icon{ font-size:2rem; display:block; margin-bottom:12px; color:#0099cc; }
.commit-item p{ margin:0; font-size:.95rem; color:var(--ink); text-align:center; }
.commit-item strong{ display:block; margin-bottom:6px; }

.foot{ max-width:940px; margin:0 auto; padding:20px 0 40px; text-align:center; color:#64748b; font-size:.9rem; }

@media (max-width: 768px) {
  .hero-frame{
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
  }
  .hero img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .caption{
    font-size: .85rem;
    padding: 8px 10px;
    border-radius: 0 0 10px 10px;
  }
}

@media (max-width: 420px) {
  .hero-frame{ aspect-ratio: 4 / 3; }
  .caption{ font-size: .8rem; }
}