/* =========================
   GLOBAL
========================= */
.our-story-page {
  background: #f8f9fa;
  color: #333;
}

.story-section {
  padding: 80px 0;
}

/* =========================
   STORY BLOCKS
========================= */
.story-block {
  background: white;
  padding: 40px;
  margin-bottom: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.story-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.story-block h2 {
  color: #570000;
  margin-bottom: 15px;
}

.story-block p {
  line-height: 1.7;
  color: #555;
}

/* =========================
   IMAGE
========================= 
.story-image-wrapper {
  margin: 25px 0;
  text-align: center;
}

.story-image {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
*/
/* =========================
   CTA
========================= */
.story-cta {
  background: #570000;
  color: white;
  padding: 80px 20px;
}

.story-cta h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.story-cta p {
  opacity: 0.9;
  margin-bottom: 25px;
}

.btn-white {
  background: #fff !important;
  color: #570000 !important;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 500;
  transition: 0.3s;
}

.btn-white:hover {
  background: #e6e6e6;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1400px) {
  .page-header h1 {
    font-size: 2.2rem;
  }

  .story-block {
    padding: 25px;
  }
}