.elementor-15 .elementor-element.elementor-element-af88f07{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-77e719e *//* General Container */
.seo-container {
  font-family: Arial, sans-serif;
  color: #333;
  margin: 20px;
}

/* Hero Section */
.hero {
  background-color: #ffcd4f;
  color: white;
  text-align: center;
  padding: 40px 20px;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
  line-height: 1.6;
}

/* Section Styling */
section {
  margin-bottom: 40px;
}

/* Images */
.image-responsive {
  width: 100%;
  height: auto;
  margin-top: 20px;
}

/* Cards for Services, Process, and Why Choose */
.service-cards, .process-cards, .why-choose-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.service-card, .process-card, .why-choose-card {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover, .process-card:hover, .why-choose-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.service-card h3, .process-card h3, .why-choose-card h3 {
  font-size: 22px;
  color: #333;
  margin-bottom: 10px;
}

.service-card p, .process-card p, .why-choose-card p {
  font-size: 16px;
  color: #555;
}

/* Button */
.cta-btn {
  background-color: #FF6600;
  color: white;
  padding: 15px 30px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  margin-top: 20px;
}

.cta-btn:hover {
  background-color: #e65c00;
}

/* Footer */
footer {
  background-color: #F7F7F7;
  padding: 20px;
  text-align: center;
  font-size: 14px;
}

a {
  color: white;
}

@media screen and (max-width: 768px) {
  .cta-btn {
    width: 100%;
    font-size: 18px;
  }

  .service-cards, .process-cards, .why-choose-cards {
    grid-template-columns: 1fr;
  }

  .service-card, .process-card, .why-choose-card {
    padding: 15px;
  }
}/* End custom CSS */