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

/* Body */
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #2E2E2E;
  color: #fff;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background-color: #000000;
}

.logo img {
  height: 50px;
}

.header-icons {
  display: flex;
  align-items: center;
}

.lang-toggle {
  background: none;
  border: none;
  color: #fff;
  font-size: 1em;
  cursor: pointer;
  margin-right: 15px;
}

.login-icon {
  height: 30px;
  cursor: pointer;
}

/* Navigation */
.main-menu {
  background-color: #000000;
}

.main-menu ul {
  display: flex;
  justify-content: space-between;
  list-style: none;
  flex-wrap: nowrap;
  overflow-x: auto;
  white-space: nowrap;
  padding: 0 10px;
}

.main-menu li {
  padding: 10px 15px;
  font-size: 0.95em;
}

.main-menu a {
  color: #fff;
  text-decoration: none;
  transition: background 0.3s;
  display: block;
}

.main-menu a:hover {
  background-color: #404040;
}

/* Slider */
.slider {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 1s ease-in-out;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Shape Overlay */
.shape {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shape img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.shape-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding: 20px 40px;
  color: #fff;
}

.shape-content .subject {
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 10px;
}

.shape-content .description {
  font-size: 1em;
  margin-bottom: 15px;
}

.shape-content .button {
  align-self: flex-end;
}

.see-more {
  padding: 10px 20px;
  background-color: #404040;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

/* Footer */
footer {
  background-color: #000000;
  color: #fff;
  padding: 30px 20px;
  text-align: center;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 20px;
  text-align: left;
}

.footer-column {
  flex: 1;
  min-width: 200px;
  margin: 10px;
}

.footer-column h3 {
  font-size: 1.2em;
  margin-bottom: 10px;
}

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

.footer-column li {
  margin-bottom: 8px;
}

.footer-column a {
  color: #fff;
  text-decoration: none;
}

.footer-column a:hover {
  text-decoration: underline;
}

.footer-bottom {
  font-size: 0.9em;
  text-align: center;
  border-top: 1px solid #404040;
  padding-top: 15px;
}


/* Responsive */
@media (max-width: 768px) {
  .main-menu ul {
    flex-direction: column;
    align-items: center;
  }

  .shape-content {
    padding: 15px 20px;
  }

  .shape-content .subject {
    font-size: 1.5em;
  }

