.elementor-21 .elementor-element.elementor-element-26841ba{--display:flex;}/* Start custom CSS for html, class: .elementor-element-51b83dd *//* General Styles */
body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background: linear-gradient(135deg, #ff5a72 0%, #ff8a9c 50%, #ffffff 100%);
}
.container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}
h1, h2 {
  text-transform: uppercase;
  margin-bottom: 20px;
}
h1 {
  text-align: center;
  font-size: 40px;
}
h2 {
  font-size: 26px;
  color: #fff;
}
p {
  margin-bottom: 15px;
}

/* Flex Layout */
.flex-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  margin: 40px 0;
}
.text-block {
  flex: 1 1 55%;
}
.img-block {
  flex: 1 1 40%;
  text-align: center;
}
.img-block img {
  width: 100%;
  max-width: 450px;
  border-radius: 10px;
}

/* Button */
.btn {
  display: inline-block;
  margin-top: 15px;
  background: #f5d76e;
  color: #000;
  padding: 12px 25px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}
.btn:hover {
  background: #fff;
  color: #ff5a72;
}

/* Partner Logos */
.partners {
  text-align: center;
  margin-top: 40px;
}
.partners img {
  margin: auto;
  max-height: auto;
  vertical-align: middle;
   transition: transform 0.3s;
}
.partners img:hover {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
  .flex-row {
    flex-direction: column;
  }
  .img-block img {
    max-width: 300px;
  }
}/* End custom CSS */