@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;700&family=Roboto:wght@400&display=swap");

body {
  font-family: "Nunito Sans", sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  background-color: #e9e8e1;
}
header {
  background-color: #151932;
  color: #ffffff;
  padding: 20px;
  text-align: center;
  position: relative;
}
.logo {
  max-width: 450px;
  margin: 0 auto 20px;
}
.container {
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}
h2 {
  font-size: 2em;
  margin-top: 40px;
}
p {
  font-size: 1.2em;
  line-height: 1.6;
}
.cta-buttons a {
  display: inline-block;
  margin: 10px 20px 0 0;
  padding: 15px 30px;
  background-color: #37509f;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}
.cta-buttons a:hover {
  background-color: #01fecc;
}
.testimonials {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  margin-top: 40px;
}
.testimonial {
  margin-bottom: 20px;
}
.testimonial p {
  font-style: italic;
}
.testimonial strong {
  display: block;
  margin-top: 10px;
}
.lang-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #01fecc;
  color: #151932;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}
footer {
  background-color: #151932;
  color: #ffffff;
  padding: 20px;
  text-align: center;
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}
.social-links {
  list-style: none;
  padding: 0;
  margin: 10px 0;
}
.social-links li {
  display: inline;
  margin: 0 10px;
}
.social-links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
}
.social-links a:hover {
  text-decoration: underline;
}
