@import "./reset.css";

body {
  font-family: Arial, sans-serif;
  background: #ffffff;
  color: #2f2f2f;
  font-size: 16px;
  font-family: "Noto Sans", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

header {
  background-color: #eceff1;
  position: sticky;
  top: 0;
}

.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
}

.logo {
  height: 3rem;
  width: auto;
}

main {
  padding: 2rem;
}

.inner-container {
  max-width: 800px;
  margin: 0 auto;
}

h1,
h2,
h3,
h4 {
  color: #2c3e50;
  font-family: "Noto Sans", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

h1 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.2rem;
}

p {
  margin: 0.5rem 0;
  line-height: 150%;
}

ul + h2,
p + h2 {
  margin-top: 3rem;
}

ul + p {
  margin-top: 1.5rem;
}

a {
  color: #027c97;
}

ul {
  padding-left: 1rem;
}

li + li {
  margin-top: 0.5rem;
}

/*** Dropdown ***/
.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown-toggle {
  background: white;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  min-width: 180px;
}

.lang-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4px;
}

.chevron-down {
  transition: all ease-in 0.2s;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  min-width: 180px;
}
.dropdown-menu a {
  display: block;
  padding: 0.75rem;
  text-decoration: none;
  color: black;
}
.dropdown-menu a:hover {
  background-color: #eee;
}
.show .dropdown-menu {
  display: block;
}

.show .chevron-down {
  transform: rotate(180deg);
}
