/* Reset some basic elements */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
  padding: 0;
  margin: 0;
}

/* Header section */
header {
  background-color: #004080;
  color: white;
  padding: 2rem 1rem;
  text-align: center;
  position: relative;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #002d5c;
  padding: 0.5rem 1rem;
}

.logo-container img {
  height: 150px;
  width: auto;
}

.language-switcher a {
  color: white;
  text-decoration: none;
  margin: 0 5px;
  font-size: 0.9rem;
}

.language-switcher a:hover {
  text-decoration: underline;
}

/* Main heading and subtext */
header h1 {
  font-size: 2rem;
  margin-top: 1rem;
}

header p {
  font-size: 1.1rem;
  margin: 0.5rem 0 1rem 0;
}

/* Navigation */
nav {
  margin: 1rem 0;
}

nav a {
  color: #ffcc00;
  margin: 0 1rem;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

/* Call to action button */
.button {
  display: inline-block;
  background-color: #ffcc00;
  color: #004080;
  padding: 0.5rem 1rem;
  margin-top: 1rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.button:hover {
  background-color: #e6b800;
}

/* Section styling */
section {
  padding: 2rem 1rem;
  max-width: 900px;
  margin: auto;
  background: white;
  margin-top: 1rem;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

section h2 {
  color: #004080;
  margin-bottom: 0.5rem;
}

section p {
  font-size: 1rem;
}

/* Footer */
footer {
  background-color: #002d5c;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
  font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  nav a {
    display: block;
    margin: 0.5rem 0;
  }
}
