:root {
  --primary: #6366f1;
  --secondary: #4338ca;
  --dark: #181349;
  --light: #F5F5FF;
  --accent: #ef4444;
  --green: #269c52;
  --grey: #555;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Noto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  letter-spacing: -0.02em;
}

body {
  background-color: var(--light);
  color: var(--dark);
  line-height: 1.5;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

header {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

a {
  text-decoration: underline;
  color: var(--dark);
  font-weight: 500;
  transition: color 0.3s;
}

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

.no-wrap {
  white-space: nowrap;
}

nav a {
  text-decoration: none;
  margin-left: 20px;
  font-weight: 500;
}

nav a.active {
  color: var(--secondary);
}

.header-title a {
  font-weight: 900;
  font-size: 24px;
  text-decoration: none;
  color: var(--primary);
}

.wide-content {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  margin-bottom: 40px;
}

.wide-content h4 {
  color: var(--secondary);
  font-size: 18px;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 0;
  min-height: 80vh;
}

.hero-content {
  flex: 1;
  padding-right: 40px;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.highlight {
  color: var(--primary);
}

h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--dark);
  line-height: 1.2;
}

h1.secondary {
  font-size: 32px;
}

h2 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--primary);
  font-weight: 800;
}

h2.light {
  color: var(--primary);
}

h2.white {
  color: var(--light);
  font-size: 18px !important;
}

h2.lead {
  font-size: 24px;
  color: var(--dark);
  margin: 30px 0 15px;
  font-weight: normal;
  font-size: 22px;
  margin-bottom: 30px;
}

h3 {
  font-size: 24px;
  color: var(--primary);
  margin: 30px 0 15px;
  font-weight: normal;
}

p {
  margin-bottom: 15px;
}

p.info {
  font-style: italic;
  color: #666;
  margin-bottom: 20px;
}

p.lead {
  font-size: 18px;
  margin-bottom: 30px;
  color: #666;
}

ul, ol {
  margin-bottom: 15px;
  padding-left: 20px;
}

li {
  margin-bottom: 8px;
}

.button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s, box-shadow 0.3s;
}

.button-primary {
  background: var(--secondary);
  color: white;
  box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
}

.button-primary:hover {
  color: var(--light);
}

.button-secondary {
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(108, 99, 255, 0.4);
}

.nav-item {
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
}

.nav-item.active {
  width: 20px;
  border-radius: 3px;
}

.empty-space {
  height: 400px;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

footer {
  background: var(--dark);
  color: white;
  padding: 40px 0;
  margin-top: 100px;
  text-align: center;
  font-size: 0.9em;
}

footer a {
  color: var(--light);
  text-decoration: none;
  margin: 0 10px;
}

@media (max-width: 768px) {
  header {
    margin-bottom: 0;
  }

  .header-title a {
    font-size: 28px;
  }
  
  .hero {
    flex-direction: column-reverse;
    padding: 40px 0;
  }
  
  .hero-content {
    padding-right: 0;
    text-align: center;
    margin-top: 120px;
  }
  
  .cta-buttons {
    justify-content: center;
  }
  
  h1 {
    font-size: 36px;
  }

  header {
    flex-direction: column;
    text-align: center;
  }

  nav {
    margin-top: 15px;
  }

  .wide-content {
    padding: 30px 20px;
  }
}
