* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  font-family: 'Inter', sans-serif;
  scroll-behavior: smooth;
  color: #fff;
}

nav {
  position: fixed;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  min-height: 60px;
}

.nav-links {
  display: flex;
  gap: 1rem;
  white-space: nowrap;
}

.nav-links a,
.mobile-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
}

.language-switcher select {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid #fff;
  padding: 0.3rem 0.6rem;
  font-size: 1rem;
  border-radius: 4px;
}

.language-switcher select option {
  color: #000;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  margin-left: 1rem;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background: white;
  margin: 4px 0;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 1rem 2rem;
}

.mobile-menu a {
  margin: 0.5rem 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
}

h1,
h2 {
  margin-top: 30px;
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

h3 {
  margin-top: 20px;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

p {
  line-height: 1.6;
  font-size: 1.1rem;
}

.slanted-top {
  clip-path: polygon(0 2vh, 100% 1px, 100% 100%, 0 100%);
}

footer {
  text-align: center;
  padding: 2rem;
  background-color: #000;
}

section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 1rem 2rem 1rem;
  background-size: cover;
  background-position: center;
  position: relative;
}

.section-inner {
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 500px;
}

.section-img {
  flex: 1;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-text {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

section .content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.section-text .content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  text-align: left;
}

.text-left .content {
  margin-left: 1rem;
}

.text-right .content {
  margin-right: 1rem;
}

ul {
  list-style: none;
  padding-left: 0;
  margin: 1.5rem 0;
}

ul li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  font-size: 1.3rem;
  line-height: 1.1;
}

.text-list li::before {
  content: '';
}

.text-list li {
  padding-left: 3px;
}

@media (max-width: 1300px) {
  .text-left .content {
    margin-left: 0;
  }

  .text-right .content {
    margin-right: 0;
  }
}

@media (max-width: 850px) {
  .nav-links {
    display: none;
  }

  section {
    padding: 2rem 1rem 1rem 1rem;
  }

  .section-inner {
    flex-direction: column;
  }

  .section-img {
    display: flex;
    width: 100%;
    min-height: 180px;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
  }

  .section-text {
    width: 100%;
    margin-top: 0;
    padding-top: 0;
  }

  .slanted-top > .section-text {
    clip-path: none;
  }

  .profile-img {
    margin-bottom: 0;
  }

  .hamburger {
    display: flex;
  }

  .language-switcher {
    margin-left: auto;
  }

  h1,
  h2 {
    font-size: 2rem;
  }

  p {
    font-size: 1rem;
  }
}