body {
  font-family: Arial, sans-serif;
  margin: 0;
  line-height: 1.6;
  background: #f4f6f9;
  color: #333;
}

header {
  background: #002f6c;
  color: white;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 50px;
}

nav a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
  font-weight: bold;
}

.lang-btn {
  color: #002f6c;
  background: #f4c430;
  margin-left: 20px;
  text-decoration: none;
  font-weight: bold;
  padding: 6px 14px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.2s;
}

.lang-btn:hover {
  background: #e0b020;
  color: #002f6c;
}

.hero {
  background: linear-gradient(to right, #004aad, #002f6c);
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.hero h2 {
  color: white;
  font-size: 28px;
  margin-bottom: 15px;
}

.logo-banner {
  text-align: center;
  background: white;
  padding: 30px 0;
}

.logo-large {
  width: 400px;
  max-width: 90%;
  height: auto;
}

/* ✅ NEW HIGHLIGHT SECTION (applies to all pages) */
.highlight-section {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50vh; /* vertically centered area */
}

.highlight-text {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #004aad; /* bold blue */
  line-height: 1.4;
  max-width: 900px;
  padding: 0 20px;
}

/* Optional: make it slightly smaller on mobile */
@media (max-width: 768px) {
  .highlight-text {
    font-size: 24px;
  }

  .highlight-section {
    height: auto;
    padding: 40px 20px;
  }
}

section {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}

h2 {
  color: #002f6c;
  margin-bottom: 15px;
}

.card {
  background: white;
  padding: 20px;
  margin: 15px 0;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

ul, ol {
  padding-left: 20px;
}

footer {
  background: #002f6c;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

/* FORCE highlight styling */
section.highlight-section {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60vh;
  text-align: center;
}

section.highlight-section p.highlight-text {
  font-size: 40px;
  font-weight: 900;
  color: #004aad;
  margin: 0;
  max-width: 900px;
  line-height: 1.4;
}