.partners-header {
  background: linear-gradient(to top, #0f172a, #1e293b);
  padding: 60px 20px;
  text-align: center;
  color: white;
}
.partners-header h1 {
  font-size: 42px;
  font-weight: bold;
  color: #ffcc00;
}
.partners-header p {
  font-size: 18px;
  opacity: 0.8;
}
.filters {
  padding: 20px;
  background: linear-gradient(to bottom, #0f172a, #4375e216);
  text-align: center;
}
.filters input,
.filters select {
  width: 250px;
  margin: 10px;
  display: inline-block;
}
.brokers-list {
  padding: 40px 20px;
}
.broker-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  box-shadow: 0px 5px 15px rgba(255, 204, 0, 0.2);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 15px 0;
}
.broker-card:hover {
  transform: scale(1.05);
  box-shadow: 0px 10px 25px rgba(255, 204, 0, 0.3);
}
.broker-card img {
  max-width: 100px;
  margin-bottom: 10px;
}
.broker-card h4 {
  font-size: 20px;
  font-weight: bold;
  color: #ffcc00;
}
.broker-card p {
  font-size: 14px;
  opacity: 0.85;
}
.broker-card .btn {
  margin: 5px;
}
.faq-section {
  padding: 80px 20px;
  text-align: center;
  color: white;
}
.accordion {
  max-width: 800px;
  margin: auto;
}
.accordion-button {
  background: rgba(255, 255, 255, 0.1);
  font-size: 18px;
  font-weight: bold;
  border: none;
  transition: background 0.3s ease;
}
.accordion-button:hover {
  background: rgba(255, 204, 0, 0.2);
}
.accordion-button:focus {
  box-shadow: none;
}
.accordion-button:not(.collapsed) {
  background: #ffcc00;
  color: #222;
}
.accordion-body {
  background: rgba(255, 255, 255, 0.05);
  font-size: 16px;
  padding: 15px;
}
.cta-partner {
  background: linear-gradient(90deg, #ffcc00, #ffb700);
  padding: 80px 20px;
  text-align: center;
  color: #222;
  position: relative;
  overflow: hidden;
}
.cta-title {
  font-size: 42px;
  font-weight: bold;
  text-transform: uppercase;
  color: #222;
  margin-bottom: 10px;
}
.cta-subtitle {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-btn {
  padding: 15px 35px;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  background: #222;
  color: #ffcc00;
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.cta-btn:hover {
  transform: scale(1.1);
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .partners-header h1 {
    font-size: 32px;
  }

  .partners-header p {
    font-size: 16px;
  }

  .filters input,
  .filters select {
    width: 100%;
  }

  .broker-card h4 {
    font-size: 18px;
  }

  .broker-card p {
    font-size: 12px;
  }
  .accordion-button {
    font-size: 16px;
  }
  .cta-title {
    font-size: 32px;
  }

  .cta-subtitle {
    font-size: 16px;
  }

  .cta-btn {
    font-size: 18px;
    padding: 12px 30px;
  }
}
