:root {
  --font-size: 1rem;
  --gold: #f6b03e;
  --bg1: rgba(17, 17, 17, 0.9);
}

.brands-container {
  padding: 2vw;
  width: 100%;
}

.brands-intro {
  max-width: 800px;
  margin: 0 auto 2rem auto;
  text-align: center;
}

.brands-intro p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #ffffff;
}

.brands-category {
  margin-bottom: 3rem;
  animation: fadeInUp 0.6s ease-out forwards;
}

.brands-category h3 {
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.brands-category h4 {
  color: #ffffff;
  margin: 1rem 0;
  font-weight: 500;
  font-size: 1.2rem;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
  margin: 1rem 0 2rem;
}

.brand-item {
  position: relative;
  background: var(--bg1);
  border-radius: 0.5em;
  padding: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  min-height: 200px;
  border: 1px solid rgba(246, 176, 62, 0.2);
}

.brand-item img {
  max-width: 100%;
  height: 60px;
  object-fit: contain;
  margin-bottom: 1.5rem;
}

.brand-item p {
  color: #ffffff;
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}

.brand-item {
  border: 1px solid rgba(246, 176, 62, 0.2);
}

/* Responsive styles */
@media screen and (max-width: 1280px) {
  .brands-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.5rem;
  }
}

@media screen and (max-width: 980px) {
  .brands-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1.5rem;
  }
  
  .brand-item {
    padding: 1rem;
    min-height: 180px;
  }
  
  .brand-item img {
    height: 45px;
    margin-bottom: 1rem;
  }
}

@media screen and (max-width: 736px) {
  .brands-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
  }
  
  .brand-item {
    min-height: 160px;
  }
  
  .brands-category h3 {
    font-size: 1.3rem;
  }
  
  .brands-category h4 {
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 480px) {
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .brand-item p {
    font-size: 0.75rem;
  }
}

/* Animation for category sections */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Add staggered animations for multiple brand items */
.brands-category:nth-child(1) { animation-delay: 0.1s; }
.brands-category:nth-child(2) { animation-delay: 0.2s; }
.brands-category:nth-child(3) { animation-delay: 0.3s; }
.brands-category:nth-child(4) { animation-delay: 0.4s; }
.brands-category:nth-child(5) { animation-delay: 0.5s; }
.brands-category:nth-child(6) { animation-delay: 0.6s; }
/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Maven+Pro:wght@800&display=swap");

/* Media Queries for Responsive Design */
@media screen and (max-width: 980px) {
  ul.infoGraphic li {
    max-width: 100%;
  }
  
  ul.infoGraphic li .number {
    font-size: 10em;
  }
  
  ul.infoGraphic li .content {
    margin: 6em 2em 1em 6em;
  }
}

@media screen and (max-width: 736px) {
  ul.infoGraphic li .number {
    font-size: 8em;
  }
  
  ul.infoGraphic li .content {
    margin: 5em 1.5em 1em 5em;
  }
}

/* Animation for the info graphic items */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

ul.infoGraphic li {
  animation: fadeInUp 0.6s ease-out forwards;
}

ul.infoGraphic li:nth-child(1) { animation-delay: 0.1s; }
ul.infoGraphic li:nth-child(2) { animation-delay: 0.2s; }
ul.infoGraphic li:nth-child(3) { animation-delay: 0.3s; }
ul.infoGraphic li:nth-child(4) { animation-delay: 0.4s; }
ul.infoGraphic li:nth-child(5) { animation-delay: 0.5s; }
  