/* Page Specific Styles */
body {
  display: block;
  padding: 0;
  grid-template-columns: none;
  gap: 0;
  background: white;
}

.about-hero {
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-900) 100%);
  color: white;
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.03" d="M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
  background-size: cover;
  opacity: 0.5;
}

.about-hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.about-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  color: var(--white);
}

.about-hero p {
  font-size: 1.4rem;
  opacity: 0.9;
  line-height: 1.6;
  font-weight: 300;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.intro-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.intro-text h2 {
  font-size: 2.2rem;
  color: var(--blue-900);
  margin-bottom: 1.5rem;
}

.intro-text p {
  font-size: 1.15rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Extracted inline style */
.why-choose-us-intro {
  margin-top: 5rem;
  margin-bottom: 2rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-bottom: 5rem;
}

.value-card {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border-bottom: 4px solid transparent;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-bottom-color: var(--orange-500);
}

.value-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange-50);
  padding: 12px;
  border-radius: 12px;
  color: var(--orange-500);
}

.value-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.value-card h3 {
  color: var(--blue-900);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.value-card p {
  color: var(--gray-600);
  line-height: 1.6;
}

.mission-banner {
  background: var(--blue-900);
  color: white;
  padding: 4rem 2rem;
  border-radius: 20px;
  text-align: center;
  margin: 2rem auto;
  max-width: 1000px;
  box-shadow: 0 20px 40px rgba(44, 62, 80, 0.2);
  position: relative;
  overflow: hidden;
}

.mission-banner::after {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 10rem;
  color: rgba(255, 255, 255, 0.05);
  font-family: serif;
}

.mission-banner h2 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange-500);
  margin-bottom: 1rem;
  font-weight: 600;
}

.mission-banner p {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}

.why-us-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 4rem;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.check-icon {
  color: var(--success);
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 4px;
}

.check-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.why-content h4 {
  font-size: 1.2rem;
  color: var(--blue-900);
  margin-bottom: 0.5rem;
}

.why-content p {
  color: var(--gray-600);
  font-size: 1rem;
}

.cta-section {
  background: linear-gradient(
    135deg,
    var(--orange-500) 0%,
    var(--orange-700) 100%
  );
  color: white;
  padding: 5rem 2rem;
  text-align: center;
  margin-top: 4rem;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  color: var(--white);
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  line-height: 1.6;
}

.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: white;
  color: var(--orange-700);
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  background: var(--white);
}

.cta-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.values-grid .full-width-card {
  grid-column: 1 / -1;
}

@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 2.5rem;
  }

  .why-us-list {
    grid-template-columns: 1fr;
  }

  .mission-banner p {
    font-size: 1.5rem;
  }
}
