.page-partners {
  font-family: Arial, sans-serif;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  line-height: 1.6;
}

.page-partners__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 15px;
}

/* Hero Section */
.page-partners__hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 10px; /* Small top padding for first section */
  background-color: #0A0A0A; /* Ensure background matches body */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-partners__hero-image {
  width: 100%;
  max-height: 600px; /* Limit height to prevent excessive stretching */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-partners__hero-image img {
  width: 100%;
  height: auto;
  object-fit: cover; /* Cover for desktop, will change for mobile */
  display: block;
}

.page-partners__hero-content {
  padding: 40px 15px;
  max-width: 900px;
  text-align: center;
  z-index: 1;
}