/* GLOBAL */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, sans-serif;
  background: #0b0f14;
  color: #e6e6e6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* HERO */
.about-hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7)),
              url('images/arab_trading_bg.jpg') no-repeat center center/cover;
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

/* CONTENT */
.about-content {
  padding: 60px 0;
}

.about-block {
  margin-bottom: 40px;
}

.about-block h2 {
  color: #d4af37;
  margin-bottom: 10px;
}

.about-block p {
  line-height: 1.7;
  color: #bbb;
}

/* TIMELINE */
.timeline {
  padding: 60px 0;
}

.timeline h2 {
  text-align: center;
  color: #d4af37;
  margin-bottom: 40px;
}

.timeline-item {
  border-left: 2px solid #d4af37;
  padding: 15px 20px;
  margin-bottom: 20px;
  position: relative;
}

.timeline-item span {
  color: #d4af37;
  font-weight: bold;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -7px;
  top: 20px;
  width: 12px;
  height: 12px;
  background: #d4af37;
  border-radius: 50%;
}

/* TEAM */
.team {
  padding: 60px 0;
  text-align: center;
}

.team h2 {
  color: #d4af37;
  margin-bottom: 40px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.team-card {
  background: #11161d;
  padding: 20px;
  border-radius: 10px;
  transition: 0.3s;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.team-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.team-card h3 {
  margin: 10px 0 5px;
}

.team-card p {
  color: #d4af37;
  margin-bottom: 5px;
}

.team-card span {
  font-size: 14px;
  color: #aaa;
}

/* REGULATION */
.regulation {
  background: #0e131a;
  padding: 60px 0;
  text-align: center;
}

.regulation h2 {
  color: #d4af37;
  margin-bottom: 20px;
}

.regulation p {
  max-width: 700px;
  margin: auto;
  color: #bbb;
}

.regulation ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.regulation li {
  margin: 10px 0;
  color: #ccc;
}

.note {
  margin-top: 15px;
  font-size: 13px;
  color: #777;
}

/* TESTIMONIALS */
.testimonials {
  padding: 60px 0;
  text-align: center;
}

.testimonials h2 {
  color: #d4af37;
  margin-bottom: 40px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.testimonial-card {
  background: #11161d;
  padding: 20px;
  border-radius: 10px;
  font-style: italic;
  transition: 0.3s;
}

.testimonial-card:hover {
  box-shadow: 0 0 15px rgba(212,175,55,0.2);
}

.testimonial-card h4 {
  margin-top: 15px;
  color: #d4af37;
  font-style: normal;
}

/* CONTACT */
.contact-info {
  background: #0e131a;
  padding: 50px 0;
  text-align: center;
}

.contact-info h2 {
  color: #d4af37;
  margin-bottom: 20px;
}

.contact-info p {
  color: #ccc;
  margin: 5px 0;
}

/* CTA */
.about-cta {
  padding: 60px 0;
  text-align: center;
}

.about-cta h2 {
  margin-bottom: 20px;
}

.btn-gold {
  background: #d4af37;
  color: #000;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: 0.3s;
}

.btn-gold:hover {
  background: #b8962e;
}

/* RESPONSIVE */
@media(max-width: 768px) {
  .about-hero h1 {
    font-size: 30px;
  }

  .timeline-item {
    padding-left: 15px;
  }
}