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

body {
  font-family: "Montserrat", sans-serif;
  background: linear-gradient(135deg, #0a2540, #1b1f23);
  color: #e0e0e0;
  line-height: 1.7;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: rgba(255, 255, 255, 0.05);
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
}

header {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  width: 220px;
  height: auto;
  margin-bottom: 10px;
}

.company-name {
  font-size: 2rem;
  font-weight: 700;
  color: #f7e059;
  text-transform: uppercase;
  margin: 0;
  text-align: center;
}

.header-text p {
  margin-top: 10px;
  font-size: 2rem;
  font-weight: 700;
  color: #f7e059;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.language-switcher {
  position: absolute;
  top: 0;
  right: 20px;
}

.language-switcher button {
  margin-left: 10px;
  padding: 8px 12px;
  background-color: #f7e059;
  border: none;
  color: #1b1f23;
  font-weight: 700;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.language-switcher button:hover {
  background-color: #e5d247;
}

.content-box {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 20px;
  margin-bottom: 40px;
  border-radius: 8px;
  font-size: 1.1rem;
}

h2 {
  font-size: 1.8rem;
  color: #f7e059;
  margin-bottom: 10px;
}

/* p {
  font-size: 1.1rem;
  color: #e0e0e0;
} */

.contact-section {
  margin-top: 40px;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  text-align: center;
}

.contact-section h2 {
  color: #f7e059;
  margin-bottom: 15px;
}

.contact-section p {
  font-size: 1.1rem;
  color: #e0e0e0;
}

.email-link {
  font-size: 1.1rem;
  color: #f7e059;
  text-decoration: none;
}

.email-link:hover {
  color: #e5d247;
}

.contact-section i {
  color: #f7e059;
  margin-right: 8px;
}

footer {
  margin-top: 40px;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9rem;
  color: #bdc3c7;
  border-radius: 8px;
}

@media (max-width: 480px) {
  .container {
    padding: 20px 10px;
  }

  .header-text {
    font-size: 1.5rem;
  }

  .logo {
    width: 160px;
  }

  h1 {
    font-size: 1.8rem;
    margin-left: 0;
    text-align: center;
  }

  .language-switcher {
    flex-direction: column;
    align-items: flex-end;
  }

  .language-switcher button {
    margin-left: 0;
    margin-bottom: 10px;
  }

  .content-box {
    padding: 15px;
  }

  h2 {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 30px 15px;
  }

  .logo {
    width: 180px;
  }

  .header-text {
    font-size: 1.8rem;
  }

  h1 {
    font-size: 2rem;
    margin-left: 5px;
  }

  .language-switcher button {
    padding: 5px 10px;
    font-size: 0.8rem;
  }

  .content-box {
    padding: 15px;
  }

  h2 {
    font-size: 1.3rem;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1500px;
  }

  .logo {
    width: 240px;
  }

  .header-text {
    font-size: 2.2rem;
  }

  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 1.6rem;
  }
}

@media (min-width: 2560px) {
  body {
    font-size: 1.5rem;
  }

  .container {
    max-width: 2000px;
    padding: 60px 40px;
  }

  .logo {
    width: 300px;
  }

  .header-text {
    font-size: 3rem;
  }

  h1 {
    font-size: 3.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .language-switcher button {
    padding: 10px 15px;
    font-size: 1rem;
  }

  .content-box {
    padding: 30px;
  }
}
