.elementor-911 .elementor-element.elementor-element-227e5f6{--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;}.elementor-911 .elementor-element.elementor-element-dccc07f{--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;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-911 .elementor-element.elementor-element-a4b6bf0{--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;}.elementor-911 .elementor-element.elementor-element-a4b6bf0.e-con{--align-self:center;}.elementor-911 .elementor-element.elementor-element-dee2d54.elementor-element{--align-self:center;}/* Start custom CSS for html, class: .elementor-element-3f5a4f6 *//* ============================
   Logical Reasoning Olympiad Hero
=============================== */
.reasoning-hero {
  padding: 60px 20px;
  background: linear-gradient(135deg, #fff9c4, #ffe082);
  border-radius: 20px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  margin: 40px 0;
}

.reasoning-hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.reasoning-hero-text {
  flex: 1;
  min-width: 300px;
  margin-right: 40px;
}

.reasoning-hero-text h1 {
  font-size: 2.2rem;
  color: #5d4037;
  margin-bottom: 15px;
}

.reasoning-hero-text p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 25px;
  line-height: 1.6;
}

.reasoning-hero-btn {
  display: inline-block;
  padding: 12px 25px;
  background: #f57f17;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.reasoning-hero-btn:hover {
  background: #e65100;
}

/* Puzzle Graphics */
.reasoning-hero-graphic {
  flex: 1;
  min-width: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.puzzle-piece {
  width: 70px;
  height: 70px;
  background: #f57f17;
  border-radius: 10px;
  position: relative;
}

.puzzle-piece::before,
.puzzle-piece::after {
  content: "";
  position: absolute;
  background: #ffe082;
  border-radius: 50%;
}

.puzzle-piece::before {
  width: 25px;
  height: 25px;
  top: 20px;
  left: -12px;
}

.puzzle-piece::after {
  width: 25px;
  height: 25px;
  bottom: 20px;
  right: -12px;
}

.puzzle-piece.rotated {
  transform: rotate(45deg);
}

/* Responsive Fix */
@media (max-width: 768px) {
  .reasoning-hero-container {
    flex-direction: column;
    text-align: center;
  }

  .reasoning-hero-text {
    margin-right: 0;
    margin-bottom: 30px;
  }

  .reasoning-hero-graphic {
    flex-direction: row;
    flex-wrap: wrap;
  }
}/* End custom CSS */