.menu-item-language-current > a {
  display: none !important;
}
/* ==== GLOBAL TEXT STYLES ==== */
body {
  font-family: 'Roboto', sans-serif;
  color: #333;
  line-height: 1.7;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  color: #003b6a;
  font-weight: 700;
}

/* Improve section readability */
section {
  padding: 80px 0;
}

p {
  margin-bottom: 18px;
}

/* ==== HERO SECTION ==== */
.hero-section {
  position: relative;
  background: linear-gradient(rgba(0, 59, 106, 0.6), rgba(0, 59, 106, 0.6)),
              url('YOUR-IMAGE.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-section h1 {
  font-size: 56px;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.hero-section p {
  font-size: 20px;
  margin-bottom: 40px;
  color: #f4f8fc;
}

/* ==== BUTTONS ==== */
a.button, .hero-section a, .elementor-button {
  background-color: #003b6a;
  color: #fff !important;
  border-radius: 6px;
  padding: 14px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

a.button:hover, .elementor-button:hover {
  background-color: #84A9C0;
  transform: translateY(-2px);
}

/* ==== CONTENT AREA ==== */
.content-section {
  background-color: #fff;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.content-text {
  flex: 1 1 50%;
}

.content-text h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.content-text h3 {
  font-size: 22px;
  color: #84A9C0;
  border-left: 4px solid #003b6a;
  padding-left: 10px;
  margin-bottom: 20px;
}

.content-image {
  flex: 1 1 40%;
  text-align: center;
}

.content-image img {
  width: 90%;
  max-width: 500px;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.15));
  border-radius: 8px;
}

/* ==== SECTION DIVIDER ==== */
.section-divider {
  background: linear-gradient(180deg, #f4f8fc 0%, #ffffff 100%);
  height: 60px;
  width: 100%;
}

/* ==== RESPONSIVE ADJUSTMENTS ==== */
@media (max-width: 1024px) {
  .hero-section {
    height: 60vh;
  }
  .hero-section h1 {
    font-size: 42px;
  }
  .content-section {
    flex-direction: column;
    text-align: center;
  }
  .content-text, .content-image {
    flex: 1 1 100%;
  }
}