.hero-section {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../images/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  animation: fadeIn 1s ease-in;
}

.what-is-freeme-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("../images/therapy-session.png");
  background-size: cover;
  margin-top: 30px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.what-is-freeme-image2 {
  width: 100%;
  height: 300px;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("../images/i-am-free.png");
  background-size: cover;
  margin-top: 30px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.what-is-freeme-image:hover {
  transform: translateY(-5px);
}

.what-is-freeme-image2:hover {
  transform: translateY(-5px);
}
.hero-section h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.hero-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  background: #4caf50;
  color: white;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.2rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
  background: #45a049;
  transform: scale(1.05);
}

.cta-button.primary {
  background: #2196f3;
}

.cta-button.primary:hover {
  background: #1e88e5;
}

.about-section {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 20px;
  border-radius: 10px;
  animation: slideUp 0.8s ease-out;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
  font-family: "Poppins", Tahoma, Geneva, sans-serif;
}

.about-section-header {
  height: 70px;
  width: 100%;
  background: linear-gradient(45deg, #000000, #28323b, #9c27b0);
  padding-top: 5px;
  border-radius: 0 20px 0 20px;
  margin-bottom: 10px;
  text-align: center;
}
.about-section-head {
  height: 70px;
  width: 100%;
  background: linear-gradient(45deg, #000000, #28323b, #9c27b0);
  border-radius: 10px 10px 0 0;
}

.about-section p {
  padding-left: 20px;
  padding-right: 20px;
}
.about-section h4 {
  font-size: 1.5rem;
  font-weight: 500;
  margin: 15px;
}

.about-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px;
}

.what-is-freeme,
.story-matters,
.how-free-me-works {
  width: 100%; /* Full width within grid cell */
  text-align: left; /* Align text for readability */
  margin: 0; /* Remove excessive margins */
  padding: 20px;
  background: rgba(255, 255, 255, 0.08); /* Slightly stronger background */
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

.step-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
}

.poll-container {
  margin: 20px 0;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
}

.poll-container:hover {
  transform: translateY(-5px);
}

.poll-container form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
  margin: 0 auto;
}

.icon-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.icon-list img {
  height: 35px;
  width: 35px;
}

.step-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 10px;
}
.rungano-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}
.rungano-section {
  position: relative;
  overflow: hidden;
}

.rungano-slider {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 600px;
  margin: 20px auto;
  padding: 20px;
}

.rungano-step {
  display: none;
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  width: 100%;
}

.rungano-step.active {
  display: block;
}

.rungano-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 10px;
}

.slider-nav {
  position: absolute;
  height: 50px;
  width: 50px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(14, 148, 63, 0.9);
  color: white;
  border: none;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.slider-nav.prev {
  left: 10px;
}

.slider-nav.next {
  right: 10px;
}

.slider-nav:hover {
  background: #45a049;
}

.chipz-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

.feature-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.impact-section .impact-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.stat-card h3 {
  font-size: 2.5rem;
  color: #4caf50;
}

.impact-section blockquote {
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
  margin: 20px 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-left: 5px solid #4caf50;
}

.cta-section {
  text-align: center;
  padding: 80px 20px;
  background: rgba(0, 0, 0, 0.7);
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  padding: 10px;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 1000;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 20px;
  }

  .hero-section h1 {
    font-size: 2.5rem;
  }

  .hero-section p {
    font-size: 1.2rem;
  }

  .sticky-cta {
    display: flex;
  }

  .cta-button {
    padding: 10px 20px;
    font-size: 1rem;
  }

  .rungano-slider {
    max-width: 100%;
  }

  .about-content {
    grid-template-columns: 1fr; /* Stack on mobile */
    padding: 20px;
  }
}
