/* CSS RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY STYLING */
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: #f7f8fa;
  color: #333;
  line-height: 1.6;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  padding: 0 20px;
  background-color: #2C3E50;
}

.logo {
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
}

/* LANGUAGE SWITCHER */
.language-switcher a {
  color: #fff;
  margin-left: 15px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}

.language-switcher a:hover {
  text-decoration: underline;
}

/* HERO SECTION */
.hero-section {
  text-align: center;
  padding: 40px 20px;
  background: #e5e9ec;
}

.hero-section h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #2C3E50;
}

.tagline {
  font-size: 1.1rem;
  color: #444;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.4;
}

/* MAIN ARTICLE SECTION */
.content-container {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.content-container p,
.content-container ul,
.content-container h2 {
  margin: 20px;
}

/* HEADINGS */
.content-container h2 {
  margin-top: 30px;
  color: #2C3E50;
  font-size: 1.4rem;
}

/* PARAGRAPHS */
.content-container p {
  margin-bottom: 20px;
  text-align: justify;
}

/* LINKS */
.content-container a {
  color: #007bff;
  text-decoration: none;
}

.content-container a:hover {
  text-decoration: underline;
}

/* EXTRA LINKS PARAGRAPH */
.extra-links {
  margin: 20px;
  font-style: italic;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #444;
  background-color: #e5e9ec;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 1.8rem;
  }
  .content-container {
    margin: 20px auto;
    padding: 10px;
  }
  .content-container h2 {
    font-size: 1.2rem;
  }

  .language-switcher a {
    margin-left: 10px;
    font-size: 0.85rem;
  }
}
