/* About Us Template Styles */
:root { 
  --brand-blue: #1b50b3; 
  --brand-sky: #52ade5; 
  --ink: #1f2a44; 
  --muted: #6b7280; 
  --bg: #f6f8fb; 
  --success: #10b981;
  --white: #ffffff;
  --yellow: #f4d03f;
  --light-gray: #f8f9fa;
}

/* Hero Section */
.about-hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: var(--light-gray);
  padding: 100px 20px;
}

.about-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.about-hero-content {
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 80px;
  align-items: center;
}

.hero-text h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 24px 0;
  color: var(--ink);
}

.hero-text p {
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 40px 0;
  color: var(--muted);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--brand-sky);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* Primary Button Styles (reused) */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--brand-sky);
  color: white;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  background: #3ba3d9;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px rgba(82, 173, 229, 0.3);
}

.btn-primary .arrow {
  transition: all 0.3s ease;
  transform: translateX(0px);
}

.btn-primary:hover .arrow {
  transform: translateX(10px);
}

/* Why Choose Us Section */
.why-choose-us {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: white;
  padding: 80px 20px;
}

.why-choose-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.why-choose-content {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 80px;
  align-items: center;
}

.why-choose-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.why-choose-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.why-choose-text h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.section-description {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 40px 0;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 40px;
}

.benefit-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  background: var(--brand-sky);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.benefit-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px 0;
  letter-spacing: 0.5px;
}

.benefit-content p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.btn-custom-plan {
  display: inline-block;
  background: var(--brand-sky);
  color: var(--white);
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-custom-plan:hover {
  background: var(--brand-sky);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(244, 208, 63, 0.3);
}


/* Responsive Design */
@media (max-width: 992px) {
  .about-hero-content,
  .why-choose-content,
  .story-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .why-choose-content {
    grid-template-columns: 1fr;
  }
  
  .hero-text h1 {
    font-size: 40px;
  }
  
  .why-choose-text h2 {
    font-size: 32px;
  }
  
  .story-text h2 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .about-hero,
  .why-choose-us,
  .our-story {
    padding: 60px 20px;
  }
  
  .about-hero-content,
  .why-choose-content,
  .story-content {
    gap: 40px;
  }
  
  .hero-text h1 {
    font-size: 36px;
  }
  
  .hero-stats {
    gap: 24px;
  }
  
  .stat-number {
    font-size: 28px;
  }
  
  .why-choose-text h2 {
    font-size: 28px;
  }
  
  .story-text h2 {
    font-size: 32px;
  }
  
  .benefit-item {
    gap: 16px;
  }
  
  .benefit-icon {
    width: 40px;
    height: 40px;
  }
  
  .hero-image img,
  .why-choose-image img,
  .story-image img {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .about-hero,
  .why-choose-us,
  .our-story {
    padding: 40px 20px;
  }
  
  .hero-text h1 {
    font-size: 32px;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 20px;
    text-align: left;
  }
  
  .stat-item {
    text-align: left;
  }
  
  .why-choose-text h2 {
    font-size: 24px;
  }
  
  .story-text h2 {
    font-size: 28px;
  }
  
  .hero-text p,
  .section-description,
  .story-text p {
    font-size: 16px;
  }
}
