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

body {
  font-family: "Aileron", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  overflow-x: hidden;
  background-color: #3f0086;
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-y: hidden;
}

.header {
  background-color: #3f0086;
  padding: 15px 0;
  position: relative;
  z-index: 10;
  flex-shrink: 0;
}
.header .header-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.header .logo-img {
  height: 50px;
  width: auto;
}

.hero {
  background-color: #3f0086;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 20px 0;
  position: relative;
  overflow: hidden;
}
.hero .hero-content {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero .hero-text h1 {
  color: white;
  font-size: 86px;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 30px;
  font-family: "Aileron", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.hero .hero-image-desktop {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero .hero-image-desktop .hero-img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

.hero-image-section {
  background-color: #3f0086;
  display: none;
}
.hero-image-section .hero-image-content {
  max-width: 1400px;
  width: 100%;
  padding: 0 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image-section .hero-img {
  max-width: 500px;
  width: 100%;
  height: auto;
}

.cta-buttons-desktop {
  display: block;
}

.cta-buttons-mobile {
  background-color: #3f0086;
  display: none;
  padding: 20px 40px;
  text-align: center;
}
.cta-buttons-mobile .cta-button {
  margin: 10px;
}

.cta-button {
  background-color: #fdd835;
  color: #3f0086;
  font-size: 42px;
  font-weight: bold;
  padding: 15px 120px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  transition: background-color 0.3s ease;
  font-family: "Aileron", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.cta-button:hover {
  background-color: #ffc107;
}

.footer {
  background-color: #3f0086;
  padding: 20px 0 25px 0;
  flex-shrink: 0;
}
.footer .footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  align-items: center;
}
.footer .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.footer .social-link:hover {
  transform: scale(1.15);
  filter: brightness(1.2);
}
.footer .social-icon {
  width: 45px;
  height: 45px;
  display: block;
}

@media (max-width: 968px) {
  body {
    height: auto;
    min-height: 100vh;
    overflow-y: auto;
  }
  .header {
    padding: 15px 0;
  }
  .header .header-content {
    padding: 0 20px;
  }
  .header .logo-img {
    height: 45px;
  }
  .hero {
    flex: none;
    padding: 40px 0 20px 0;
  }
  .hero .hero-content {
    padding: 0 20px;
    grid-template-columns: 1fr;
    gap: 0;
  }
  .hero .hero-text h1 {
    font-size: 38px;
    margin-bottom: 20px;
    text-align: center;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
    text-wrap: balance;
  }
  .hero .hero-image-desktop {
    display: none;
  }
  .cta-buttons-desktop {
    display: none;
  }
  .hero-image-section {
    display: flex;
    padding: 0;
  }
  .hero-image-section .hero-image-content {
    padding: 0 20px;
  }
  .hero-image-section .hero-img {
    max-width: 350px;
  }
  .cta-buttons-mobile {
    display: block;
    padding: 20px 20px;
  }
  .cta-button {
    font-size: 28px;
    padding: 15px 60px;
    display: block;
    text-align: center;
    margin: 0 auto;
  }
  .footer {
    padding: 15px 0 20px 0;
  }
  .footer .footer-content {
    padding: 40px 20px;
    justify-content: center;
  }
  .footer .social-icon {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 480px) {
  .hero {
    padding: 30px 0 15px 0;
  }
  .hero .hero-text h1 {
    font-size: 30px;
    max-width: 95%;
    line-height: 1.25;
    text-wrap: balance;
  }
  .hero-image-section .hero-img {
    max-width: 280px;
  }
  .cta-button {
    font-size: 24px;
    padding: 12px 40px;
  }
}/*# sourceMappingURL=styles.css.map */