/* Section */
.campaign-section {
  background: #212529;
  padding: 80px 0;
  color: #ffffff;
}

/* Titles */
.campaign-section h2,
.campaign-section h3,
.campaign-section h4 {
  color: #ffffff;
}

.campaign-section p {
  color: #ccc;
}

/* Highlight text */
.highlight {
  color: #ff2e2e;
  font-weight: 600;
}

/* Intro paragraph */
.brandSummary {
  color: #838383;
  max-width: 700px;
}

/* Timeline wrapper */
.timeline {
  margin-top: 50px;
  position: relative;
}

/* Timeline item */
.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  gap: 15px;
}

/* Step circle */
.timeline-item .circle {
  width: 45px;
  height: 45px;
  background: #ff2e2e;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 45px;
  font-weight: bold;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(255, 46, 46, 0.3);
}

/* Content box */
.timeline-item .content {
  background: #1c1f23;
  padding: 18px 20px;
  border-radius: 10px;
  width: 100%;
  border: 1px solid #2b3035;
  transition: 0.3s;
}

.timeline-item .content:hover {
  border-color: #ff2e2e;
  transform: translateY(-3px);
}

.timeline-item h4 {
  color: #fff;
  margin-bottom: 5px;
}

.timeline-item p {
  color: #ccc;
  margin: 0;
}

/* Stats card text fix */
.campaign-section .card {
  background: #1c1f23;
  border: 1px solid #2b3035;
}

.campaign-section .card h2 {
  color: #ff2e2e !important;
  font-weight: 700;
}

.campaign-section .card p {
  color: #ccc !important;
}
/* Mobile */
@media (max-width: 767px) {

  .campaign-section {
    padding: 50px 15px;
  }

  .timeline-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .timeline-item .circle {
    margin-bottom: 10px;
  }

  .timeline-item .content {
    padding: 15px;
  }

}