.hero-section {
  background-image: url("../../public/background/banner-profile.jpg");
  background-size: cover;
  background-position: center;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  background: rgba(0, 0, 0, 0.1);
  /* padding: 20px; */
  border-radius: 10px;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 20px;
}

.business-imagery {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #2196f3;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-text {
  color: rgb(23, 23, 23);
  font-size: 18px;
  font-weight: bold;
}

.breadcrumb {
  background: white;
  padding: 15px 20px;
  border-bottom: 1px solid #e0e0e0;
}

.breadcrumb a {
  color: #2196f3;
  text-decoration: none;
  margin-right: 10px;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  color: #666;
  margin: 0 5px;
}

.main-content {
  background: white;
  margin: 20px 0;
  border-radius: 8px;

  overflow: hidden;
}

.section-header {
  background: #f8f9fa;
  padding: 20px;
  border-left: 4px solid #2196f3;
}

.section-header h2 {
  color: #2196f3;
  font-size: 24px;
  font-weight: 500;
}

.section-content {
  padding: 30px;
}

.about-section {
  margin-bottom: 40px;
}

.about-section h3 {
  color: #2196f3;
  margin-bottom: 20px;
  font-size: 18px;
  position: relative;
}

.about-section h3::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #ffd700, #ffa500);
  border-radius: 2px;
}

.about-text {
  line-height: 1.6;
  margin-bottom: 15px;
  text-align: justify;
}

.highlight {
  color: #2196f3;
  font-weight: 500;
}

.services-list {
  margin: 20px 0;
}

.service-item {
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

.service-item:last-child {
  border-bottom: none;
}

.partnerships-section {
  background: #f8f9fa;
  padding: 30px;
  margin-top: 30px;
  border-radius: 8px;
}

.partnerships-section h3 {
  color: #2196f3;
  margin-bottom: 20px;
  font-size: 18px;
  position: relative;
}

.partnerships-section h3::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #ffd700, #ffa500);
  border-radius: 2px;
}

.partner-logos {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.partner-logo {
  width: 120px;
  height: 80px;
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.partner-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-color: #2196f3;
}

.contact-info h4 {
  margin-bottom: 15px;
  font-size: 16px;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .section-content {
    padding: 20px;
  }

  .partner-logos {
    justify-content: center;
  }
}
