<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
  margin: 0;
  font-family: "Arial", sans-serif;
  color: #fff;
  background-image: url(/images/back.svg?52c54e56d5d9995d78ce0a3aac600866);
  background-size: cover;
  background-position: center;
  position: relative;
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.83);
  z-index: -1;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: rgba(19, 101, 34, 0.87);
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #19a808;
}

.nav-buttons {
  display: flex;
  align-items: center;
}

.nav-buttons button {
  background: none;
  border: 1px solid #19a808;
  color: #19a808;
  padding: 10px 20px;
  margin-left: 10px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-buttons button:hover {
  background: #158006;
  color: #000;
}

.language-dropdown {
  position: relative;
}

.language-dropdown ul {
  display: none;
  position: absolute;
  top: 40px;
  right: 0;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #19a808;
  list-style: none;
  margin: 0;
  padding: 10px;
  border-radius: 10px;
  color: #000;
}

.language-dropdown ul li {
  padding: 10px;
  cursor: pointer;
  color: #000;
}

.language-dropdown ul li:hover {
  background: #158006;
  color: #fff;
}

.language-dropdown:hover ul {
  display: block;
}

.hero-section {
  text-align: center;
  padding: 100px 20px;
}

.hero-section h1 {
  font-size: 48px;
  margin-bottom: 20px;
  color: #19a808;
}

.hero-section p {
  font-size: 20px;
  margin-bottom: 40px;
}

.hero-section .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.cta-buttons a {
  text-decoration: none;
  background: #19a808;
  color: #ffffff;
  padding: 15px 30px;
  border: 1px solid #00ff65;
  border-radius: 30px;
  font-size: 18px;
  transition: all 0.3s ease;
}

.cta-buttons a:hover {
  background: #036e15;
}

.features {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 40px;
  gap: 20px;
}

.feature-box {
  background: #0daa15;
  color: #ffffff;
  border: 1px solid #00ff33;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  width: 300px;
}

.feature-box h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #ffffff;
}

.combined-block {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  background: linear-gradient(135deg, #1c7c06, #036e15);
  color: #000;
  padding: 40px;
  border-radius: 15px;
  overflow-y: auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin: 40px 0;
}

.combined-block .section {
  text-align: center;
  padding: 20px;
  background: #07a837;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.combined-block .section h2 {
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 10px;
}

.combined-block .section p {
  font-size: 16px;
  color: #ffffff;
}

footer {
  text-align: center;
  padding: 20px;
  background: rgba(19, 101, 34, 0.87);
}

footer p {
  margin: 0;
  font-size: 14px;
  color: #ffffff;
}

.highlight-block {
  text-align: center;
  background: linear-gradient(135deg, #1c7c06, #036e15);
  color: #ffffff;
  padding: 50px 20px;
  margin: 40px 0;
  border-radius: 20px;
}

.highlight-block h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.highlight-block p {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto;
}

::-webkit-scrollbar {
  display: none;
}

html {
  scrollbar-width: none;
}
</pre></body></html>