.faq-section {
  max-width: 900px;
  margin: 10px auto 50px;
  padding: 0 20px;
}

.faq-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #111;
}

.faq-item {
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  background: #fff;
  transition: all 0.3s ease;
}

.faq-question {
  padding: 18px 22px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  color: #222;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 22px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  content: "−";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  transition: all 0.35s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 22px 20px;
}

.faq-item:hover {
  border-color: #c9c9c9;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

/* Mobile */
@media (max-width: 768px) {
  .faq-title {
    font-size: 26px;
  }

  .faq-question {
    font-size: 16px;
  }
}

.global-exporter{
    padding: 80px 100px 80px 100px !important;
    max-width: 1250px;
    margin: auto;
}
.padding-small-b{
    padding-bottom: 50px !important;
}

table {
    font-family: "DM Sans", sans-serif;
  border-radius: 10px;
  overflow: hidden;
}

table th {
  background: #f7f7f7;
  font-weight: 600;
}

table td, table th {
  padding: 12px;
}


 .countries-section {
    margin: 40px 0;
  }

  .countries-section h5 {
    font-size: 30px;
    font-weight: 600;
    text-align: start;
    line-height: 1.2;
    margin-bottom: 35px;
    margin-top: 45px;
  }

  .countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 20px;
  }

  .country-item {
    text-align: center;
    font-size: 15px;
    line-height: 1.2;
  }

  .country-item img {
    width: 90px;
    height: 60px;
    border-radius: 0;
    object-fit: cover;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    margin-bottom: 16px;
  }
  .country-sec{
    padding-bottom: 30px !important;
  }