.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

.content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.partnersTitle {
  font-size: 4.5rem;
  font-weight: 700;
  color: #000000;
  text-align: center;
}

.consultantsTitle,
.associatesTitle {
  font-size: 3.5rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 1.5rem;
  text-align: center;
}

.gridContainer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.2rem 1.2rem;
  justify-items: center;
  margin-bottom: 2.5rem;
}

.associatesGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.2rem 1.2rem;
  justify-items: center;
}

.loadingContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
  width: 100%;
}

.loadingSpinner {
  width: 50px;
  height: 50px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid #2c3087;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
} 