/* About Page Specific Styles */

.about-hero-section {
  background: #fff;
  padding: 100px 0 60px 0;
  text-align: center;
}
.about-hero-logo img {
  max-width: 120px;
  margin-bottom: 1.5rem;
}
.about-hero-title {
  font-family: "Bellefair", serif;
  font-size: 2.8rem;
  color: #c0392b;
  margin-bottom: 0.5rem;
}
.about-hero-tagline {
  font-family: "Belleza", sans-serif;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 0;
}

.about-story-section {
  background: #fff;
  padding: 60px 0 40px 0;
}
.about-story-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: flex-start;
}
.about-story-text {
  flex: 1 1 350px;
  min-width: 300px;
  max-width: 600px;
}
.about-highlight-quote {
  font-family: "Bellefair", serif;
  font-size: 1.2rem;
  color: #c0392b;
  margin: 1.5rem 0;
  border-left: 4px solid #c0392b;
  padding-left: 1rem;
}
.about-story-visuals {
  flex: 1 1 300px;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}
.about-story-img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  background: #f8f9fa;
}

.about-ajediam-section {
  background: #f8f9fa;
  padding: 60px 0 40px 0;
}
.about-ajediam-container {
  max-width: 1000px;
  margin: 0 auto;
}
.about-ajediam-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: flex-start;
}
.about-ajediam-text {
  flex: 2 1 350px;
  min-width: 300px;
}
.about-features-grid {
  flex: 1 1 200px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  align-items: start;
}
.about-feature {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 1.2rem 0.8rem;
  text-align: center;
  font-size: 1rem;
  color: #c0392b;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.about-feature i {
  font-size: 1.5rem;
  color: #c0392b;
}

@media (max-width: 900px) {
  .about-story-content,
  .about-ajediam-content {
    flex-direction: column;
    gap: 2rem;
  }
  .about-story-visuals {
    justify-content: flex-start;
  }
  .about-features-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .about-story-visuals {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  .about-story-img {
    width: 100%;
    max-width: 260px;
    height: 140px;
  }
  .about-features-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}
@media (max-width: 400px) {
  .about-features-grid {
    grid-template-columns: 1fr;
  }
}
