<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
  --primary-color: rgb(106, 28, 195);
  --primary-dark: rgb(86, 23, 159);
  --secondary-color: #0071bc;
  --text-color: #333;
  --light-gray: #f8f9fa;
  --dark-gray: #666;
  --white: #fff;
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  --transition: all 0.3s ease;
}

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

body {
  font-family: "Open Sans", sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

header {
  background-color: var(--white);
  padding: 25px 0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo h1 {
  font-size: 26px;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: -0.5px;
}

.hero {
  background-color: var(--light-gray);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  overflow: hidden;
  padding: 0;
}

.hero .container {
  padding: 40px;
  max-width: 900px;
  z-index: 1;
  position: relative;
}

.hero h1 {
  margin-bottom: 30px;
  font-size: 48px;
}

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

.cta-button {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 18px 36px;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(106, 28, 195, 0.3);
  border: none;
  cursor: pointer;
  margin-top: 10px;
}

.cta-button:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(106, 28, 195, 0.4);
}

.dots-shape {
  position: absolute;
  width: 300px;
  height: 300px;
  background-image: radial-gradient(var(--primary-color) 2px, transparent 2px);
  background-size: 18px 18px;
  opacity: 0.12;
  right: 5%;
  bottom: 10%;
  z-index: 0;
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.dots-shape:before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background-image: radial-gradient(var(--primary-color) 2px, transparent 2px);
  background-size: 12px 12px;
  opacity: 0.2;
  left: -250px;
  top: -150px;
  z-index: 0;
  border-radius: 50%;
  animation: float 12s ease-in-out infinite reverse;
}

@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(5deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

.info {
  padding: 80px 0;
  background-color: var(--white);
}

.info-box {
  background-color: var(--white);
  padding: 50px;
  border-radius: 12px;
  box-shadow: var(--box-shadow);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  transition: var(--transition);
}

.info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.info-box h3 {
  font-size: 28px;
  margin-bottom: 25px;
  color: var(--primary-color);
  font-weight: 600;
}

.info-box p {
  font-size: 17px;
  line-height: 1.7;
}

footer {
  background-color: var(--light-gray);
  padding: 40px 0;
  text-align: center;
  margin-top: auto;
}

footer p {
  color: var(--dark-gray);
  margin-bottom: 15px;
  font-size: 15px;
}

.footer-links a {
  color: var(--dark-gray);
  text-decoration: none;
  margin: 0 15px;
  font-size: 15px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-color);
}

@media screen and (max-width: 768px) {
  .hero {
    min-height: 100vh;
    padding: 0;
  }

  .hero .container {
    padding: 30px 20px;
  }

  .hero h1 {
    font-size: 36px;
    margin-bottom: 25px;
  }

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

  .cta-button {
    padding: 14px 28px;
    font-size: 16px;
  }

  .dots-shape {
    width: 150px;
    height: 150px;
  }

  .info-box {
    padding: 35px;
  }
}
</pre></body></html>