/* General Styles */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #1B1E1E;
  color: #E0E0E0;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

/* Header */
header {
  background-color: #121212;
  padding: 1rem 0;
}

.logo {
  height: 50px;
}

.buttons .btn {
  background-color: #E0E0E0;
  color: #1B1E1E;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  margin-left: 1rem;
  font-weight: bold;
  transition: background-color 0.3s;
}

.buttons .btn:hover {
  background-color: #C0C0C0;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 2rem 1rem;
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.language-switch {
  margin-top: 1rem;
}

.lang-btn {
  background-color: #E0E0E0;
  color: #1B1E1E;
  border: none;
  padding: 0.5rem 1rem;
  margin: 0 0.5rem;
  border-radius: 5px;
  cursor: pointer;
}

.lang-btn.active {
  background-color: #C0C0C0;
}

/* Carousel */
.carousel {
  margin: 2rem 0;
  overflow: hidden;
  position: relative;
}

.carousel-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-image {
  width: 100%;
  flex-shrink: 0;
}

/* Features Section */
.features {
  padding: 2rem 1rem;
  text-align: center;
}

.features h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.features ul {
  list-style: none;
  padding: 0;
}

.features li {
  margin: 0.5rem 0;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  background-color: #121212;
  color: #A0A0A0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    text-align: center;
  }

  .buttons {
    margin-top: 1rem;
  }

  .hero h1 {
    font-size: 1.5rem;
  }
}