:root{
  --primary:#b61f2a;
  --primary-dark:#8e1821;
  --bg:#f8f9fb;
  --white:#ffffff;
  --text:#1f2937;
  --muted:#6b7280;
  --border:#e5e7eb;
  --shadow:0 10px 30px rgba(0,0,0,.08);
  --radius:22px;
  --max:1200px;
}

*{
  box-sizing:border-box;
}

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color:var(--text);
  background:var(--bg);
}

img{
  max-width:100%;
  display:block;
}

.about-page{
  width:100%;
}

.about-container{
  width:min(var(--max), calc(100% - 32px));
  margin:0 auto;
}

.about-hero{
  background:linear-gradient(135deg, rgba(182,31,42,.95), rgba(142,24,33,.92));
  color:#fff;
  padding:90px 0 80px;
}

.about-hero-content{
  width:min(900px, calc(100% - 32px));
  margin:0 auto;
  text-align:center;
}

.about-badge{
  display:inline-block;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.18);
  padding:8px 16px;
  border-radius:999px;
  font-size:13px;
  font-weight:700;
  margin-bottom:18px;
}

.about-hero h1{
  margin:0 0 18px;
  font-size:clamp(36px, 6vw, 64px);
  line-height:1;
}

.about-hero p{
  margin:0 auto;
  max-width:760px;
  font-size:18px;
  line-height:1.7;
  opacity:.96;
}

.about-intro{
  margin-top:-45px;
  padding-bottom:24px;
}

.about-intro-grid{
  width:min(var(--max), calc(100% - 32px));
  margin:0 auto;
  display:grid;
  grid-template-columns: 380px 1fr;
  gap:24px;
  align-items:stretch;
}

.about-logo-card,
.about-text-card,
.about-card,
.cta-box{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

.about-logo-card{
  padding:34px;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:320px;
}

.about-logo-card img{
  max-width:280px;
  object-fit:contain;
}

.about-text-card{
  padding:34px;
}

.about-text-card h2{
  margin:0 0 16px;
  font-size:30px;
  color:var(--primary);
}

.about-text-card p{
  margin:0 0 16px;
  line-height:1.85;
  color:#374151;
}

.about-section{
  padding:70px 0;
}

.about-section.light{
  background:#fff;
}

.section-heading{
  margin-bottom:28px;
}

.section-heading span{
  display:block;
  color:var(--primary);
  font-weight:800;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin-bottom:10px;
}

.section-heading h2{
  margin:0;
  font-size:36px;
  line-height:1.1;
}

.about-cards{
  display:grid;
  gap:22px;
}

.about-cards.two-cols{
  grid-template-columns:repeat(2, 1fr);
}

.about-card{
  padding:28px;
}

.about-card h3{
  margin:0 0 14px;
  color:var(--primary);
  font-size:24px;
}

.about-card p{
  margin:0;
  line-height:1.8;
  color:#374151;
}

.values-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:16px;
}

.value-pill{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  padding:20px 18px;
  text-align:center;
  font-weight:800;
  box-shadow:var(--shadow);
}

.objectives-list{
  display:grid;
  gap:18px;
}

.objective-item{
  background:#fff;
  border:1px solid var(--border);
  border-left:6px solid var(--primary);
  border-radius:18px;
  padding:24px;
  box-shadow:var(--shadow);
}

.objective-item h3{
  margin:0 0 10px;
  font-size:22px;
  color:var(--primary);
}

.objective-item p{
  margin:0;
  line-height:1.75;
  color:#374151;
}

.about-cta{
  padding:0 0 80px;
}

.cta-box{
  padding:32px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
}

.cta-mini{
  display:block;
  color:var(--primary);
  font-weight:800;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin-bottom:10px;
}

.cta-box h2{
  margin:0 0 10px;
  font-size:32px;
}

.cta-box p{
  margin:0;
  color:#4b5563;
  line-height:1.7;
  max-width:700px;
}

.cta-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.btn-about{
  text-decoration:none;
  padding:14px 22px;
  border-radius:14px;
  font-weight:800;
  transition:.2s ease;
  white-space:nowrap;
}

.btn-about.primary{
  background:var(--primary);
  color:#fff;
}

.btn-about.primary:hover{
  background:var(--primary-dark);
}

.btn-about.secondary{
  background:#fff;
  color:var(--text);
  border:1px solid var(--border);
}

.btn-about.secondary:hover{
  background:#f3f4f6;
}

@media (max-width: 980px){
  .about-intro-grid{
    grid-template-columns:1fr;
  }

  .about-cards.two-cols{
    grid-template-columns:1fr;
  }

  .values-grid{
    grid-template-columns:repeat(2, 1fr);
  }

  .cta-box{
    flex-direction:column;
    align-items:flex-start;
  }
}

@media (max-width: 640px){
  .about-hero{
    padding:72px 0 64px;
  }

  .about-hero p{
    font-size:16px;
  }

  .about-text-card,
  .about-logo-card,
  .about-card,
  .cta-box{
    padding:22px;
  }

  .section-heading h2{
    font-size:28px;
  }

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

  .objective-item h3{
    font-size:20px;
  }
}