:root {
  --page-primary: #4f46e5;
  --page-primary-light: #6366f1;
  --page-primary-dark: #4338ca;
  --page-secondary: #8b5cf6;
  --page-accent: #06b6d4;
}
.hero-banner {
  background: linear-gradient(135deg, var(--page-primary-dark) 0%, var(--page-primary) 50%, var(--page-secondary) 100%);
  padding: 100px 0 80px;
  color: white;
  position: relative;
  overflow: hidden;
}
.hero-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.hero-content p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.95;
}
.section {
  padding: 80px 0;
}
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}
.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--page-primary), var(--page-secondary));
  border-radius: 2px;
}
.section-title p {
  color: #6b7280;
  font-size: 1.1rem;
  margin-top: 20px;
}
.about-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.about-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #6b7280;
  margin-bottom: 20px;
}
.stats-section {
  background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}
.stat-card {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--page-primary);
  display: block;
  margin-bottom: 10px;
}
.stat-label {
  font-size: 1rem;
  color: #6b7280;
}
.business-section {
  background: white;
}
.business-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}
.business-card {
  background: white;
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}
.business-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(79, 70, 229, 0.2);
}
.business-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--page-primary), var(--page-primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.business-icon i {
  font-size: 2rem;
  color: white;
}
.business-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 15px;
}
.business-card p {
  color: #6b7280;
  line-height: 1.7;
}
.values-section {
  background: linear-gradient(135deg, var(--page-primary-dark) 0%, var(--page-primary) 100%);
  color: white;
}
.values-section .section-title h2 {
  color: white;
}
.values-section .section-title h2::after {
  background: linear-gradient(90deg, white, rgba(255,255,255,0.5));
}
.values-section .section-title p {
  color: rgba(255, 255, 255, 0.8);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.value-item {
  text-align: center;
  padding: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}
.value-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.value-icon i {
  font-size: 1.8rem;
  color: white;
}
.value-item h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.value-item p {
  opacity: 0.9;
  line-height: 1.6;
}
.locations-section {
  background: #f9fafb;
}
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}
.location-card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.location-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--page-primary);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.location-card h4 i {
  font-size: 1.2rem;
}
.location-card p {
  color: #6b7280;
  line-height: 1.6;
}
.cta-section {
  background: linear-gradient(135deg, var(--page-primary-dark) 0%, var(--page-secondary) 100%);
  padding: 80px 0;
  color: white;
  text-align: center;
}
.cta-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.cta-section p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 30px;
}
.cta-button {
  display: inline-block;
  background: white;
  color: var(--page-primary);
  padding: 15px 40px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  color: var(--page-primary-dark);
}
@media (max-width: 768px) {
  .hero-content h1 { font-size: 2rem; }
  .stats-grid, .business-grid, .values-grid, .locations-grid { grid-template-columns: 1fr; }
}
