.our-story-content {
  padding-bottom: 100px;
  width: 100%;
}

.our-story-content p {
  font-size: var(--fluid-14-16);
  font-weight: 400;
  color: #4A4A4A;
  line-height: 1.5;
  margin-bottom: 20px;
}

.our-story-content h2 {
  color: rgba(31, 34, 37, 1);
  font-family: "SangBleuRegular", serif;
  font-weight: 400;
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
}

.our-story-content h3 {
  color: rgba(31, 34, 37, 1);
  font-weight: 500;
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}

.our-story-content span {
  font-size: var(--fluid-14-16);
  font-weight: 400;
  color: #4A4A4A;
  line-height: 1.5;
  margin-bottom: 20px;
}

.our-story-content ul {
  margin-left: 20px;
}

.our-story-content ul li {
  margin-bottom: 10px;
}

/* Hero Banner Improvements */
.hero-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0;
  text-align: left;
}

/* Story Highlights Section */
.story-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 20px 0;
  padding: 15px 0;
  width: 100%;
}

.highlight-card {
  text-align: center;
  padding: 30px 20px;
  background: linear-gradient(135deg, #f5f0ea 0%, #ffffff 100%);
  border: 1px solid rgba(107,51,5,0.1);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  background: linear-gradient(135deg, #f0e8df 0%, #ffffff 100%);
}

.highlight-card i {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  color: var(--primary-color);
  stroke-width: 1.5;
}

.highlight-card h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 8px 0;
}

.highlight-card p {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
}

/* Story Sections */
.story-section {
  margin: 20px 0;
  padding: 20px 0;
  border-bottom: 1px solid #e0e0e0;
}

.story-section:last-of-type {
  border-bottom: none;
}

.story-section h2 {
  text-align: left;
  max-width: 100%;
}

.story-content-wrapper {
  max-width: 100%;
  margin: 0;
  text-align: left;
}

.story-content-wrapper p {
  text-align: left;
  max-width: 100%;
}

/* Lead paragraph style removed for simplification */

/* Pull Quotes */
.pull-quote {
  margin: 40px 0;
  padding: 30px;
  background: linear-gradient(135deg, #f5f5f5 0%, #faf8f6 100%);
  border-left: 2px solid var(--primary-color);
  border-radius: 8px;
}

.pull-quote blockquote {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.6;
  font-style: italic;
  color: #333;
  font-weight: 300;
}

/* Timeline Section */
.timeline {
  position: relative;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 80px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--primary-color) 0%, rgba(255,152,0,0.3) 100%);
}

.timeline-item {
  display: flex;
  margin-bottom: 40px;
  position: relative;
  align-items: flex-start;
}

.timeline-marker {
  width: 140px;
  padding: 8px 16px;
  background: var(--primary-color);
  color: #333;
  border-radius: 20px;
  font-weight: 600;
  text-align: center;
  position: relative;
  z-index: 2;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 0;
  align-self: flex-start;
  transform: translateY(4px);
}

.timeline-marker::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: white;
  border: 3px solid var(--primary-color);
  border-radius: 50%;
}

.timeline-content {
  flex: 1;
  padding-left: 40px;
}

.timeline-content h3 {
  margin-top: 0 !important;
  margin-bottom: 16px !important;
  color: #333;
  font-size: 1.4rem;
}

.timeline-content p {
  margin-bottom: 20px;
}

/* Insight callout removed for simplification */

/* Benefits List */
.benefits-list {
  list-style: none;
  margin: 20px 0 !important;
  padding: 0 !important;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px !important;
  padding: 8px 0;
}

.benefits-list i {
  color: #4caf50;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Product Highlight */
.product-highlight {
  background-color: #372214;
  background-image: url("../../img/light_bg_pricing.png");
  background-size: auto;
  background-position: center right;
  background-repeat: no-repeat;
  padding: 40px 32px;
  border-radius: 24px;
  margin: 20px 0;
}

.product-highlight h4 {
  margin: 0 0 24px 0;
  color: #ffffff;
  font-family: "SangBleuMedium", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
}

.product-highlight ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-highlight li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.4;
  margin-bottom: 12px;
}

.product-highlight li i {
  margin-top: 4px;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: #ffffff;
}

/* Impact Section */
.impact-section h2 {
  text-align: left;
  max-width: 100%;
}

.impact-content {
  max-width: 100%;
  margin: 0;
  text-align: left;
}

.impact-content p {
  text-align: left;
  max-width: 100%;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 40px 0;
  width: 100%;
}

.impact-card {
  text-align: center;
  padding: 30px;
  background: linear-gradient(135deg, #f5f0ea 0%, #ffffff 100%);
  border: 1px solid rgba(107,51,5,0.1);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.impact-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  transform: translateY(-5px);
  background: linear-gradient(135deg, #f0e8df 0%, #ffffff 100%);
}

.impact-card h3 {
  font-size: 1.2rem;
  margin: 0 0 16px 0 !important;
  color: #333;
}

.impact-card p {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

/* CTA Section */
.cta-section {
  background-color: #372214;
  background-image: url("../../img/light_bg_pricing.png");
  background-size: auto;
  background-position: center right;
  background-repeat: no-repeat;
  padding: 40px 32px;
  border-radius: 24px;
  text-align: left;
  margin-top: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.cta-section h2 {
  font-family: "SangBleuRegular", serif;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 16px 0 !important;
  color: #ffffff;
}

.cta-section > p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #ffffff;
  margin-bottom: 30px;
  max-width: 600px;
}

/* Existing Organization Support Styles */
.organization-we-support {
  margin-top: 3.5rem;
}

.organization-we-support h3 {
  font-weight: 500;
  margin-bottom: 1rem;
  margin-top: 3.5rem;
}

.org-support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  width: 100%;
}

.org-card {
  display: flex;
  align-items: center;
  background: #faf8f6;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  gap: 20px;
}

.org-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-right: 16px;
  flex-shrink: 0;
}

.org-card h4 {
  margin: 0 0 8px 0;
  font-size: 1.3em;
}

.org-card p {
  margin: 0;
  color: #444;
  font-size: 1em;
}

.org-support-buttons {
  display: flex;
  gap: 20px;
  margin-top: 32px;
  justify-content: flex-start;
}

.cta-section .btn-primary {
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
  border: 2px solid #ffffff;
  color: #372214;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.cta-section .btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(107,51,5,0.1), transparent);
  transition: left 0.6s ease;
}

.cta-section .btn-primary:hover {
  background: linear-gradient(135deg, #8B4513 0%, #6B3305 100%);
  border-color: #8B4513;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(107,51,5,0.3);
}

.cta-section .btn-primary:hover::before {
  left: 100%;
}

.cta-section .btn-primary svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.cta-section .btn-primary:hover svg {
  transform: translateX(4px);
}

/* Responsive Design - Increased margins by 75% */
@media (max-width: 1024px) {
  /* Container padding handled by base.css */
}

@media (max-width: 1024px) {
  .story-highlights {
    grid-template-columns: repeat(2, 1fr);
    padding: 15px 0;
  }
  
  .impact-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .timeline-marker {
    width: 120px;
    font-size: 0.85rem;
  }
  
  .org-support-grid {
    gap: 24px;
  }
  
  .org-card {
    padding: 20px;
    gap: 16px;
  }
  
  .org-logo {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 768px) {
  /* Container padding now handled by base.css */
  
  .product-highlight {
    padding: 30px 24px;
  }
  
  .product-highlight h4 {
    font-size: 24px;
  }

  .story-highlights {
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 15px 0;
    padding: 15px 0;
  }
  
  .impact-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  
  .impact-card {
    padding: 20px;
  }
  
  .impact-card h3 {
    font-size: 1rem;
  }
  
  .impact-card p {
    font-size: 0.85rem;
  }
  
  .highlight-card {
    padding: 20px;
  }
  
  .story-section {
    margin: 20px 0;
    padding: 15px 0;
  }
  
  .timeline::before {
    left: 60px;
  }
  
  .timeline-marker {
    width: 100px;
    font-size: 0.8rem;
    padding: 6px 12px;
  }
  
  .timeline-content {
    padding-left: 30px;
  }
  
  .cta-section {
    padding: 30px 24px;
  }
  
  
  .cta-section > p {
    font-size: 15px;
  }
  
  .org-support-buttons {
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
    align-items: flex-start;
    width: 100%;
  }

  .cta-section .btn-primary {
    width: auto;
    justify-content: center;
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .org-support-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .org-card {
    padding: 18px;
    gap: 14px;
  }
  
  .org-logo {
    width: 60px;
    height: 60px;
    margin-right: 12px;
  }
}

@media (max-width: 480px) {
  /* Container padding now handled by base.css */
  
  .impact-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .impact-card {
    padding: 20px;
  }
  
  .product-highlight {
    padding: 24px 20px;
    border-radius: 20px;
  }
  
  .product-highlight h4 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  
  .product-highlight li {
    font-size: 14px;
  }
  
  .product-highlight li i {
    width: 20px;
    height: 20px;
  }

  .hero-subtitle {
    font-size: 1rem;
  }
  
  .story-highlights {
    padding: 15px 0;
  }
  
  .highlight-card h3 {
    font-size: 2rem;
  }
  
  .timeline::before {
    display: none;
  }
  
  .timeline-item {
    flex-direction: column;
    margin-bottom: 30px;
  }
  
  .timeline-marker {
    width: fit-content;
    margin-bottom: 16px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #6b3305 0%, #ae734e 100%);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(107, 51, 5, 0.2);
    border-radius: 25px;
    display: inline-block;
  }
  
  .timeline-marker::after {
    display: none;
  }
  
  .timeline-content {
    padding-left: 0;
  }
  
  /* Lead paragraph responsive removed */
  
  .pull-quote blockquote {
    font-size: 1.1rem;
  }
  
  .cta-section {
    padding: 24px 20px;
    border-radius: 20px;
  }
  
  .cta-section h2 {
    margin-bottom: 12px !important;
  }
  
  .cta-section > p {
    font-size: 14px;
    margin-bottom: 20px;
  }
  
  .org-card {
    padding: 16px;
    gap: 12px;
    border-radius: 20px;
  }
  
  .org-logo {
    width: 50px;
    height: 50px;
    margin-right: 10px;
  }
}

@media (max-width: 360px) {
  .highlight-card {
    padding: 15px;
  }
  
  .highlight-card h3 {
    font-size: 1.8rem;
  }
  
  .timeline-marker {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
  
  .org-card {
    padding: 14px;
    gap: 10px;
  }
  
  .org-logo {
    width: 45px;
    height: 45px;
    margin-right: 8px;
  }
}