.elementor-1260 .elementor-element.elementor-element-5ca4ede{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-93aa9b6 */:root {
  --fern: #66bf6a;
  --dark-fern: #084612;
  --xanadu: #7e8b80;
  --killarney: #3c6442;
  --finlandia: #5a765f;
  --goblin: #428948;
  --mantis: #7fc460;
  --ocean-green: #4eba73;
  --everglade: #23552b;
}

/* BASE STYLES */
.specialty-page {
  font-family: "Cairo", "Tajawal", sans-serif;
  direction: rtl;
  color: var(--dark-fern);
  background: #fff;
  line-height: 1.8;
}

/* HERO SECTION */
.hero {
  position: relative;
  background: url('https://images.unsplash.com/photo-1526256262350-7da7584cf5eb?auto=format&fit=crop&w=1400&q=80')
    center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 130px 20px;
  overflow: hidden;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 70, 18, 0.6);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 750px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
}

.hero .btn {
  display: inline-block;
  background: var(--fern);
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.hero .btn:hover {
  background: var(--goblin);
}

/* TOPICS SECTION */
.topics {
  display: flex;
  flex-direction: column;
  gap: 70px;
  padding: 80px 20px;
  max-width: 1150px;
  margin: 0 auto;
}

.topic {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.topic.reverse {
  flex-direction: row-reverse;
}

.topic .image img {
  width: 500px;
  max-width: 100%;
  border-radius: 18px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.topic .image img:hover {
  transform: scale(1.03);
}

.topic .content {
  flex: 1;
  min-width: 280px;
}

.topic h2 {
  color: var(--killarney);
  font-size: 1.6rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.topic p {
  color: var(--xanadu);
  font-size: 1.05rem;
  margin-bottom: 15px;
}

.topic .btn {
  display: inline-block;
  background: var(--fern);
  color: #fff;
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.topic .btn:hover {
  background: var(--goblin);
}

/* CTA SECTION */
.cta {
  background: var(--fern);
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.cta p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  line-height: 1.9;
}

.cta .btn {
  background: white;
  color: var(--everglade);
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}

.cta .btn:hover {
  background: #f3f3f3;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .topic {
    flex-direction: column;
    text-align: center;
  }

  .topic.reverse {
    flex-direction: column;
  }

  .topic .image img {
    width: 100%;
  }

  .cta h2 {
    font-size: 1.7rem;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 90px 15px;
  }

  .topics {
    gap: 50px;
    padding: 50px 15px;
  }

  .cta {
    padding: 60px 15px;
  }
}/* End custom CSS */