body {
  margin: 0;
  font-family: 'Lora', serif;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: #fff;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

h1, h2, h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

.header {
  position: sticky;
  top: 0;
  background: rgba(30, 60, 114, 0.9);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  z-index: 1000;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header .logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.main-nav {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: #ff6f61;
  bottom: -5px;
  left: 0;
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.auth-buttons {
  display: flex;
  gap: 1rem;
}

.auth-button {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: transparent;
  border: 2px solid #6C63FF; /* Matching aesthetic violet-blue */
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.auth-button:hover {
  background: #6C63FF;
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(108, 99, 255, 0.6);
}


.cta-button {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: #6C63FF; /* Soft violet-blue tone */
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(108, 99, 255, 0.6); /* Matching glow effect */
}

.footer {
  padding: 2rem 0;
  text-align: center;
  background: rgba(30, 60, 114, 0.9);
}


@media (max-width: 768px) {
  .header .container {
    flex-direction: column;
    gap: 1rem;
  }

  .main-nav ul {
    flex-direction: column;
    text-align: center;
  }

  .auth-buttons {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    text-align: center;
  }

  .auth-button {
    width: fit-content;
    margin: 0 auto;
  }
}
