.partners-section {
  background: #fff;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 32px;
  font-weight: bold;
  color: #1a1a1a;
  margin-bottom: 40px;
}

.update-date {
  font-size: 14px;
  color: #777;
  margin-left: 10px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  background: #f0f6ff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  flex: 1 1 500px;
  max-height: 600px;
  overflow-y: auto;
}

.card-title {
  font-size: 20px;
  color: #0b4991;
  margin-bottom: 15px;
}

.card-list {
  list-style-type: disc;
  padding-left: 20px;
  color: #333;
}

.card-list li {
  margin-bottom: 8px;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.logo-placeholder {
  background: #fff;
  border: 1px solid #ccc;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 14px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* about Banner */
.partners-banner {
  background-color: var(--primary-color);
  color: var(--white);
  padding: var(--spacing-xxl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.partners-banner h1 {
  position: relative;
  z-index: 1;
  font-size: 3rem;
}

.partners-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../public/images/about-banner-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: 0;
}

.logo-placeholder img {
    height: 150px;
    width: auto;
}

/* about Section */
.partners-section {
  padding: var(--spacing-xxl) 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .logo-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 768px) {
  .partners-banner h1 {
    font-size: 2.5rem;
  }

  .flex-container {
    display: block;
  }
}

@media (max-width: 576px) {
  .logo-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-lg);
  }

  .service-card {
    padding: var(--spacing-lg);
  }

  .service-icon {
    width: 50px;
    height: 50px;
  }

  .flex-container {
    display: block;
  }
}
