/* Our Story Dark Section Styles */

.our-story-dark-section {
  padding: 80px 0;
  background: #1a1a1a;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.our-story-dark-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #f4d03f, #f39c12, #f4d03f);
}

.story-dark-container {
  position: relative;
  z-index: 2;
}

.story-dark-title {
  font-size: 42px;
  font-weight: 700;
  color: #f4d03f;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}

.story-dark-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: #f4d03f;
}

.story-dark-content {
  display: flex;
  gap: 60px;
  align-items: center;
  margin-top: 50px;
}

.story-dark-text {
  flex: 1;
}

.story-dark-paragraph {
  font-size: 16px;
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 20px;
}

.story-dark-paragraph:last-child {
  margin-bottom: 0;
}

.story-dark-image {
  flex: 1;
  text-align: center;
}

.story-dark-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.story-dark-stats {
  display: flex;
  justify-content: space-around;
  margin-top: 60px;
  flex-wrap: wrap;
  gap: 30px;
}

.story-dark-stat {
  text-align: center;
  padding: 20px;
}

.story-dark-stat-number {
  font-size: 36px;
  font-weight: 700;
  color: #f4d03f;
  margin-bottom: 10px;
  display: block;
}

.story-dark-stat-label {
  font-size: 14px;
  color: #ccc;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 992px) {
  .story-dark-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .story-dark-stats {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .story-dark-title {
    font-size: 32px;
  }
  
  .story-dark-paragraph {
    font-size: 15px;
  }
  
  .story-dark-stat-number {
    font-size: 28px;
  }
  
  .story-dark-stat-label {
    font-size: 12px;
  }
}
