/* Share Your Story Page Styles */

/* Hero Section */
.share-your-story-page .hero-section {
  background-image: linear-gradient(rgba(0, 123, 194, 0.85), rgba(0, 86, 160, 0.85)), url("../images/share-your-story/psp-banner.926655566afd.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0;
  position: relative;
}

.share-your-story-page .hero-section h1 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.share-your-story-page .hero-section .lead {
  font-size: 18px;
  line-height: 1.6;
  max-width: 900px;
  opacity: 0.95;
}

.share-your-story-page .hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.share-your-story-page .btn-primary {
  background-color: #ff7f00;
  border-color: #ff7f00;
  color: white;
  padding: 12px 30px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.share-your-story-page .btn-primary:hover {
  background-color: #e67300;
  border-color: #e67300;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 127, 0, 0.3);
}

.share-your-story-page .btn-outline-white {
  background-color: white;
  color: #007BC2;
  border: 2px solid white;
  padding: 12px 30px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.share-your-story-page .btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.9);
  color: #0056a0;
  border-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.share-your-story-page .btn-outline-white:focus,
.share-your-story-page .btn-outline-white:active {
  background-color: white !important;
  color: #007BC2 !important;
  border-color: white !important;
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25) !important;
}

/* Why Post Section */
.share-your-story-page .why-post-section {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.share-your-story-page .section-title {
  font-size: 28px;
  color: #333;
  font-weight: 600;
  margin-bottom: 3rem;
}

.share-your-story-page .feature-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.share-your-story-page .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);
}

.share-your-story-page .icon-wrapper {
  width: 80px;
  height: 80px;
  background: #f0f7ff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.share-your-story-page .icon-wrapper i {
  color: #007BC2;
}

.share-your-story-page .feature-card h3 {
  font-size: 1.25rem;
  color: #333;
  font-weight: 600;
}

.share-your-story-page .feature-card p {
  color: #666;
  line-height: 1.6;
}

/* How Post Section */
.share-your-story-page .how-post-section {
  background: linear-gradient(135deg, #007BC2 0%, #0056a0 100%);
  padding: 80px 0;
}

.share-your-story-page .how-post-section .section-title {
  color: white;
}

.share-your-story-page .how-post-section .lead {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.95;
}

.share-your-story-page .btn-white {
  background-color: white;
  color: #007BC2;
  border: 2px solid white;
  padding: 12px 30px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.share-your-story-page .btn-white:hover {
  background-color: rgba(255, 255, 255, 0.9);
  color: #0056a0;
  border-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.share-your-story-page .btn-white:focus,
.share-your-story-page .btn-white:active {
  background-color: white !important;
  color: #007BC2 !important;
  border-color: white !important;
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25) !important;
}

/* Case Study Section */
.share-your-story-page .case-study-section {
  background-color: white;
  padding: 80px 0;
}

.share-your-story-page .case-study-section .lead {
  font-size: 1.125rem;
  color: #495057;
  line-height: 1.6;
}

.share-your-story-page .case-study-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.share-your-story-page .case-study-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
  color: #495057;
  font-size: 1.05rem;
}

.share-your-story-page .case-study-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
  font-size: 1.25rem;
}

.share-your-story-page .case-study-image {
  margin-top: 1rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.share-your-story-page .case-study-image img {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 450px;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .share-your-story-page .hero-section {
    padding: 60px 0;
  }
  
  .share-your-story-page .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .share-your-story-page .section-title {
    font-size: 2rem;
  }
  
  .share-your-story-page .why-post-section,
  .share-your-story-page .how-post-section,
  .share-your-story-page .case-study-section {
    padding: 60px 0;
  }
}

@media (max-width: 767px) {
  .share-your-story-page .hero-section h1 {
    font-size: 2rem;
  }
  
  .share-your-story-page .hero-section .lead {
    font-size: 1rem;
  }
  
  .share-your-story-page .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .share-your-story-page .btn-lg {
    width: 100%;
    text-align: center;
  }
  
  .share-your-story-page .feature-card {
    padding: 2rem 1.5rem;
  }
  
  .share-your-story-page .icon-wrapper {
    width: 60px;
    height: 60px;
  }
  
  .share-your-story-page .icon-wrapper i {
    font-size: 1.5rem;
  }
  
  .share-your-story-page .section-title {
    font-size: 1.75rem;
  }
  
  .share-your-story-page .case-study-list li {
    font-size: 1rem;
  }
}