a {
  text-decoration: none;
}

.hero-section {
  padding: 60px 0;
}

.home_container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero_div {
  width: 50%;
}

.hero_title {
  font-size: 3.8rem;
  margin-bottom: 2rem;
}

.hero_subtitle {
  font-size: 3rem;
  color: #3f708e;
}

.hero_text {
  font-size: 2.2rem;
  margin-top: 2rem;
}

.hero_text span {
  color: #fbb304;
  font-weight: bold;
}

/* SEO Content Section Styling */
.seo-content-section {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef 50%, #dee2e6);
  padding: 80px 0;
  margin: 60px 0;
}

.seo-content-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.seo-content-heading {
  font-size: 3.2rem;
  font-weight: 700;
  color: #333;
  text-align: center;
  margin-bottom: 50px;
  font-family: 'Dosis', sans-serif;
  line-height: 1.2;
}

.seo-content-text h3 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #ff7f00;
  margin: 40px 0 20px 0;
  font-family: 'Dosis', sans-serif;
  line-height: 1.3;
}

.seo-content-text h3:first-child {
  margin-top: 0;
}

.seo-content-text p {
  font-size: 1.8rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 25px;
  font-family: 'Open Sans', sans-serif;
}

.seo-cta {
  background: linear-gradient(135deg, #ff7f00, #ff8c00);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  margin-top: 40px;
  box-shadow: 0 8px 25px rgba(255, 127, 0, 0.3);
}

.seo-cta strong {
  color: #fff;
  font-size: 2rem;
  display: block;
  margin-bottom: 15px;
}

.seo-cta a {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  text-decoration: underline;
  transition: all 0.3s ease;
}

.seo-cta a:hover {
  color: #f0f0f0;
  text-decoration: none;
}

/* Responsive Design for SEO Section */
@media (max-width: 768px) {
  .seo-content-heading {
    font-size: 2.6rem;
    margin-bottom: 40px;
  }
  
  .seo-content-text h3 {
    font-size: 2rem;
    margin: 30px 0 15px 0;
  }
  
  .seo-content-text p {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
  
  .seo-cta {
    padding: 25px 20px;
    margin-top: 30px;
  }
  
  .seo-cta strong {
    font-size: 1.8rem;
  }
  
  .seo-cta a {
    font-size: 1.6rem;
  }
}
