/* Hero Section - About Page*/
.about-hero {
  background-image: url('uploads/sitespecific/about.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 20px;
  text-align: center;
  color: white;
  text-shadow: 1px 1px 8px rgba(0,0,0,0.7);
  font-family: 'Arial', sans-serif;
  position: relative;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto;
}

/* ======================
   5. Our Story Section
====================== */
.our-story {
  padding: 4rem 2rem;
  background-color: #f8f8f8;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-text h2 {
  font-size: 2rem;
  color: #9c2c4c;
  margin-bottom: 2rem;
  font-weight: 600;
}

.story-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 1.5rem;
}

.story-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ======================
   6. Values Section
====================== */
.values-section {
  padding: 4rem 2rem;
  background-color: #ffffff;
  text-align: center;
}

.values-section h2 {
  color: #333;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}


.value-card {
  background: #f8f8f8;
  padding: 2rem;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.value-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(156, 44, 76, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}

.value-card h3 {
  color: #9c2c4c;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.value-card p {
  color: #666;
  line-height: 1.6;
  font-size: 0.9rem;
}

/* ======================
   7. Expertise Section
====================== */
.expertise-section {
  padding: 4rem 2rem;
  background-color: #f8f8f8;
}

.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.expertise-content h2 {
  font-size: 2rem;
  color: #9c2c4c;
  margin-bottom: 2rem;
  font-weight: 600;
}

.expertise-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.expertise-item {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #9c2c4c;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.expertise-item h4 {
  color: #9c2c4c;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.expertise-item p {
  color: #666;
  line-height: 1.6;
  font-size: 0.9rem;
}

.expertise-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ======================
   8. Team Section
====================== */
.team-section {
  padding: 4rem 2rem;
  background-color: #ffffff;
  text-align: center;
}

.team-section h2 {
  color: #333;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.team-intro {
  font-size: 1.1rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.team-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.stat {
  background: #9c2c4c;
  color: white;
  padding: 2rem;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(156, 44, 76, 0.2);
}

.stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(156, 44, 76, 0.3);
}

.stat h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat p {
  font-size: 1rem;
  opacity: 0.9;
}

/* ======================
   10. Responsive Styles
====================== */
@media (max-width: 900px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .story-grid,
  .expertise-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .team-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .team-stats {
    grid-template-columns: 1fr;
  }

  .our-story,
  .values-section,
  .expertise-section,
  .team-section {
    padding: 3rem 1rem;
  }
}
