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

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #fff;
  color: #111;
  line-height: 1.5;
}

.navbar {
  width: 90%;
  max-width: 1200px;
  margin: 20px auto;
  background: #f1f1f1;
  border-radius: 40px;
  padding: 12px 20px;
}

.navbar ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
  list-style: none;
  flex-wrap: wrap;
}

.navbar li {
  position: relative;
}

.navbar a,
.dropbtn {
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  color: #000;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  background: none;
  border: none;
  cursor: pointer;
}

.navbar a:hover,
.dropbtn:hover {
  color: #666;
}

.navbar a.active {
  color: #666;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  min-width: 180px;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  z-index: 1000;
}

.dropdown-content a {
  display: block;
  padding: 12px 16px;
  font-size: 0.9rem;
  font-weight: normal;
  color: #111;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
  display: block;
}


.lang-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
  z-index: 2000; 
}

.lang-btn:hover {
  background: #444;
}

.header {
  text-align: center;
  padding: 80px 20px 40px;
}

.header h1 {
  font-size: 3rem;
  font-weight: 700;
}

.header p {
  font-size: 1rem;
  color: #888;
  margin-top: 10px;
}

.about {
  display: flex;
  flex-direction: row;
  max-width: 1200px;
  margin: 40px auto;
  gap: 40px;
  padding: 0 20px;
}

.about-text,
.about-image {
  flex: 1;
}

.about-text h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-align: center;
}

.about-text p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 15px;
  text-align: justify;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}


.contact {
  text-align: center;
  margin: 60px 20px;
  font-size: 1rem;
}

.contact a {
  color: #111;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.contact a:hover {
  color: #888;
}


@media (max-width: 768px) {
  .about {
    flex-direction: column;
  }

  .about-image {
    margin-top: 20px;
    height: 300px;
  }
}
