@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
}
body {
  min-height: 100vh;
  width: 100%;
  background-image:
    linear-gradient(to bottom, rgba(20,25,70,0.30) 0%, rgba(20,25,70,0.15) 6%, rgba(20,25,70,0.06) 12%, rgba(255,255,255,0) 28%),
    linear-gradient(to bottom, rgba(11,118,201,0.12) 0%, rgba(11,118,201,0.04) 14%, rgba(255,255,255,0) 36%),
    linear-gradient(180deg, #f7fcff 0%, #eef7ff 45%, #f6f2ff 100%);
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: #0f2730;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 15px;
}
.navbar .logo a {
  font-size: 1.8rem;
  text-decoration: none;
  color: #3015B8;
}
.navbar .links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 35px;
}
.navbar .links a {
  font-weight: 500;
  text-decoration: none;
  color: #4332e4;
  padding: 10px 0;
  transition: 0.2s ease;
}
.navbar .links a:hover {
  color: #f7fcff;
}
.navbar .buttons a {
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
  padding: 15px 0;
  transition: 0.2s ease;
}
.navbar .buttons a:not(:last-child) {
  margin-right: 30px;
}
.navbar .buttons .signin:hover {
  color: #3316c7;
}
.navbar .buttons .signup {
  border: 1px solid #fff;
  padding: 10px 20px;
  border-radius: 0.375rem;
  text-align: center;
  transition: 0.2s ease;
}
.navbar .buttons .signup:hover {
  background-color: #3316c7;
  color: #fff;
}
.hero-section {
  display: flex;
  justify-content: space-evenly;
  align-items: justify;
  min-height: 75vh; /* flexible: grows if content is larger */
  padding: 120px 15px 60px; /* top padding leaves room for fixed header */
  max-width: 1200px;
  margin: 0 auto;
}
.hero-section .hero {
  max-width: 50%;
  color: #fff;
}
.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #3015B8;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #5c739bef/*#f5f9f9*/;
  text-align: justify;     
  max-width: 700px;        
  margin-left: auto;      
  margin-right: auto;
  line-height: 1.6;        
}
.hero p1 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #5c739bef;
  text-align: justify;      
  max-width: 700px;        
  margin-left: auto;      
  margin-right: auto;
  line-height: 1.6;        
}
.hero-section .img img {
  width: 517px;
}
.hero-section .buttons {
  margin-top: 40px;
}
.hero-section .buttons a {
  text-decoration: none;
  color: #fff;
  padding: 12px 24px;
  border-radius: 0.375rem;
  font-weight: 600;
  transition: 0.2s ease;
  display: inline-block;
}
.hero-section .buttons a:not(:last-child) {
  margin-right: 15px;
}
.buttons .join {
  background-color: #3015B8/*#3316c7 #47b2e4*/;
}
.hero-section .buttons .learn {
  background: transparent;
  border: 1px solid #3015B8; 
  color: #3015B8;            
  padding: 10px 22px;
  border-radius: 0.375rem;
  font-weight: 700;
  -webkit-text-stroke: 0.6px #3015B8; 
  text-shadow: 0 0 0 rgba(0,0,0,0); 
  transition: background .18s ease, transform .12s ease, border-color .12s ease, box-shadow .12s ease;
  box-shadow: none;
}
.hero-section .buttons .learn:hover {
  background: linear-gradient(180deg, #3015B8 0%, #3015B8 100%);
  border-color: #3015B8;
  color: #ffffff;
  -webkit-text-stroke: 0px transparent;
  text-shadow: none;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(11,118,201,0.12);
}

#menu-toggle {
  display: none;
}
#hamburger-btn {
  font-size: 1.8rem;
  color: #5c739bef;
  cursor: pointer;
  display: none;
  order: 1;
}
@media screen and (max-width: 1023px) {
  .navbar .logo a {
    font-size: 1.5rem;
  }
  .links {
    position: fixed;
    left: -100%;
    top: 75px;
    width: 100%;
    height: 100vh;
    padding-top: 50px;
    background: #fff;
    flex-direction: column;
    transition: 0.3s ease;
  }
  .navbar #menu-toggle:checked ~ .links {
    left: 0;
  }
  .navbar #hamburger-btn {
    display: block;
  }
  .header .buttons {
    display: none;
  }
  .hero-section .hero {
    max-width: 100%;
    text-align: justify;
  }
  .hero-section img {
    display: none;
  }
}
