.partner-opportunity {
  background-color: #eef3fa;
  padding: 4rem 1rem;
  border-bottom: 1px solid #dce3f1;
}

.partner-opportunity .container {
  max-width: 1280px;
  margin: 0 auto;
}

.opportunity-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.opportunity-text {
  flex: 1 1 500px;
}

.opportunity-text h2 {
  font-size: 2rem;
  color: #002a66;
  margin-bottom: 1rem;
}

.opportunity-text p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.opportunity-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.highlight {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.highlight i {
  font-size: 1.8rem;
  color: #0052cc;
  margin-top: 0.2rem;
}

.highlight h3 {
  font-size: 1.1rem;
  margin: 0;
  color: #002a66;
}

.highlight p {
  font-size: 0.95rem;
  color: #444;
  margin: 0.3rem 0 0;
}

.opportunity-image {
  flex: 1 1 400px;
  text-align: center;
}

.opportunity-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.partner-benefits-section {
  background-color: #1c5ab8;
  padding: 4rem 1rem;
  border-top: 1px solid #dce3f1;
}

.partner-benefits-section .container {
  max-width: 1280px;
  margin: 0 auto;
}

.partner-benefits-section .section-title {
  text-align: center;
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 3rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.benefit-item {
  background-color: #f8faff;
  border: 1px solid #e0eafc;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
  font-size: 2rem;
  color: #0052cc;
  margin-bottom: 1rem;
}

.benefit-item h3 {
  font-size: 1.1rem;
  color: #003366;
  margin-bottom: 0.5rem;
}

.benefit-item p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
}

.commission-structure {
  background-color: #f9fbff;
  padding: 4rem 1rem;
}

.commission-structure .container {
  max-width: 1200px;
  margin: 0 auto;
}

.commission-structure .section-title {
  text-align: center;
  font-size: 2rem;
  color: #003366;
  margin-bottom: 2.5rem;
}

.commission-table table {
  width: 100%;
  border-collapse: collapse;
  background-color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
}

.commission-table thead {
  background-color: #0052cc;
  color: #003366;
}

.commission-table th,
.commission-table td {
  padding: 1.2rem;
  text-align: left;
  font-size: 0.95rem;
  color: #003366;
}

.commission-table tbody tr:nth-child(even) {
  background-color: #f2f6fc;
}

.commission-table td {
  color: #333;
}

.commission-table th {
  font-weight: 600;
}

.partner-requirements {
    background-color: #eaf3fb; /* Soft blue background */
    padding: 4rem 1rem;
}

.partner-requirements .container {
    max-width: 1100px;
    margin: 0 auto;
}

.partner-requirements .section-title {
    text-align: center;
    font-size: 2rem;
    color: #003366;
    margin-bottom: 2rem;
}

.requirements-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.requirements-list {
    flex: 1 1 45%;
}

.requirements-list h3 {
    color: #0056b3;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.requirements-list ul {
    list-style: none;
    padding: 0;
}

.requirements-list li {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    color: #333;
}

.requirements-list li i {
    color: #1284B9;
    margin-right: 10px;
    font-size: 1rem;
}

@media screen and (max-width: 768px) {
    .requirements-content {
        flex-direction: column;
        padding: 1.5rem;
    }

    .requirements-list {
        flex: 1 1 100%;
    }
}

.partner-process {
  background-color: #f9fbff;
  padding: 4rem 1rem;
}

.partner-process .container {
  max-width: 1100px;
  margin: 0 auto;
}

.partner-process .section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
  color: #002b5e;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.step {
  background-color: white;
  border: 2px solid #e0e8f5;
  border-radius: 12px;
  padding: 1.5rem;
  width: 260px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.step:hover {
  transform: translateY(-6px);
}

.step-number {
  background-color: #0056b3;
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  width: 40px;
  height: 40px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.step-content h3 {
  font-size: 1.1rem;
  color: #003366;
  margin-bottom: 0.5rem;
}

.step-content p {
  font-size: 0.95rem;
  color: #555;
}