/* Reset some defaults */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Geneva, Verdana, sans-serif;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px;
}

header {
  text-align: center;
  margin-bottom: 40px;
}

header h1 {
  font-size: 2.5rem;
  color: #2c3e50;
}

.tagline {
  font-size: 1.1rem;
  color: #7f8c8d;
}

.language-switcher {
  text-align: center;
  margin-top: -20px;
  margin-bottom: 30px;
  font-size: 0.95rem;
}

.language-switcher a {
  text-decoration: none;
  color: #2980b9;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background-color 0.2s;
}

.language-switcher a:hover {
  background-color: #ecf0f1;
}

.language-switcher a.active {
  font-weight: bold;
  text-decoration: underline;
}

.about {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
  align-items: center;
}

.about img {
  max-width: 100%;
  width: 400px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.about .text {
  flex: 1;
}

.about h2 {
  margin-bottom: 10px;
  color: #34495e;
}

.contact h2 {
  margin-bottom: 20px;
  color: #34495e;
}

.contact p {
  margin-bottom: 10px;
  padding: 10px;
  background-color: #ffffff;
  border-left: 4px solid #FE0002;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  border-radius: 4px;
}

footer {
  text-align: center;
  margin-top: 60px;
  font-size: 0.9rem;
  color: #aaa;
}

@media (prefers-color-scheme: dark) {
  body {
    background-color: #1c1e21;
    color: #e0e0e0;
  }

  header h1 {
    color: #f0f0f0;
  }

  .tagline {
    color: #bbb;
  }

  .language-switcher a {
    color: #6ca0ff;
  }

  .language-switcher a:hover {
    background-color: #2a2a2a;
  }

  .about h2,
  .contact h2 {
    color: #ffffff;
  }

  .contact p {
    background-color: #2a2a2a;
    box-shadow: none;
  }

  footer {
    color: #666;
  }
}
