.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 50px 0;
}

.breadcrumb {
  font-size: 14px;
  color: #777;
  margin-top: 20px;
}

.breadcrumb a {
  color: #555;
  text-decoration: none;
}

.breadcrumb i {
  margin: 0 8px;
}

.section-title {
  font-size: 36px;
  color: #222;
  margin-bottom: 20px;
  font-weight: 700;
}

.section-subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
  max-width: 700px;
  text-align: justify;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
  align-items: center;
}

.about-grid img {
  width: 100%;
  height: 300px;
  background: #ccc;
  border-radius: 10px;
}

.main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text h3 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #111;
}

.about-text p {
  color: #555;
}

.card-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.card {
  background: white;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  padding: 30px;
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-8px);
}

.card i {
  font-size: 24px;
  background: linear-gradient(
      90deg,
      rgba(248, 102, 196, 0.6) 0%,
      rgba(255, 235, 235, 0.4) 100%
    );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
}

.card h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #222;
}

.card p {
  color: #666;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 28px;
  }
}