/* Hero Section */
.hero {
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
  /* padding: 80px 0; */
  text-align: center;
  /* border-bottom: 4px solid #1fc602; */
}

.hero-title {
  font-size: 2.8rem;
  color: #1a1a1a;
  /* margin-bottom: 20px; */
  line-height: 1.2;
  text-align: start;
  padding: 0;
  margin: 0;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #555;
  /* max-width: 800px; */
  margin: 0;
  padding: 0;
  text-align: start;
  /* margin: 0 auto 30px; */
  line-height: 1.6;
}

.date {
  font-size: 1.1rem;
  color: #555;
  text-align: start;
  margin: 0;
  padding-top: 50px;
}

/* Content Section */
.content-section {
  padding: 60px 0;
}

.images {
  width: 100%;
  display: flex;
  justify-content: center;

}

.images img {
  border-radius: 20px;
  height: 550px;
}

.info {
  max-width: 800px;
  margin: 0 auto;
  text-align: start;
  font-size: 1.1rem;
  color: #666666;
  /* font-style: italic; */
  line-height: 1.7;
}

.info p {
  margin-bottom: 30px;
}

.info p strong {
  font-weight: 600;
}

.cta-button {
  display: inline-block;
  background-color: #1fc602;
  color: white;
  padding: 15px 35px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(31, 198, 2, 0.3);
  border: none;
  cursor: pointer;
}

.cta-btn--wrapper {
  display: flex;
  justify-content: center;
}

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

li {
  /* margin-bottom: 20px; */
  list-style: none;
  
}
ul li {
position: relative;

  
}
ul li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background-color: #1fc602;
  color: white;
  border-radius: 50%;
  font-weight: bold;
  font-size: .9rem;
  position: absolute;
  top: 5px;
}
ul li p{
  margin-left: 40px;
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  font-style: italic;
}

/* Responsive styles */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
    padding: 0 20px;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .date {
    padding: 30px 20px 0;
  }

  .content-section {
    padding: 40px 20px;
  }

  .images img {
    height: 350px;
    width: 100%;
    object-fit: cover;
  }

  .info {
    padding: 0 10px;
  }

  .info p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .cta-button {
    padding: 12px 25px;
    font-size: 1rem;
    width: 80%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.6rem;
  }

  .images img {
    height: 250px;
  }

  .info {
    padding: 0;
  }

  .date {
    padding-top: 20px;
    font-size: 0.9rem;
  }

  .cta-button {
    width: 90%;
    padding: 14px 20px;
  }
}

/* Tablet styles */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .images img {
    height: 400px;
  }

  .info {
    padding: 0 20px;
  }
}