body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #0056b3;
  color: #333;
}

/* Header Section */
.site-header {
  height: 40px;
  width: 100%;
  background: black;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Menu Icon */
.menu-icon {
  font-size: 26px;
  cursor: pointer;
  color: white;
}

/* Language Selector */
.language-selector select {
  padding: 6px 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #f9f9f9;
  font-size: 14px;
  cursor: pointer;
}

.language-selector select:focus {
  outline: none;
  border-color: #ff6600;
}
/* Header Section End */

/* Main container */
.about-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
  background-color: #ffffff;
}

/* Top Image */
.about-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0px 4px 12px rgb(0, 0, 0, 0.25);
  border: 1px solid #000;
  transition: all 0.4s ease;
}

.about-image img:hover {
    border: none;
    transform: scale(1.03);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.35);
}

/* Each section */
.about-section {
  background: #fff;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0px 2px 8px rgba(0,0,0,0.1);
}

.about-section h2 {
  margin-bottom: 10px;
  font-size: 30px;
  font-weight: bold;
  color: #222;
}

.about-section p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.about-section li {
    margin: 0;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
}

/* Responsive */
@media (max-width: 600px) {
  .about-section {
    padding: 15px;
  }
  
  .about-section h2 {
    font-size: 20px;
  }

  .about-section p {
    font-size: 15px;
  }
}