body {
  font-family: Montserrat, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Header styling */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  border-bottom: 1px solid #eaeaea;
  background-color: #fff;
}

.navbar-left {
  display: flex;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: #000;
  margin-right: 40px;
}

.logo img {
  height: 28px;
  margin-right: 8px;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a,
.dropbtn {
  font-size: 1rem;
  color: #111;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 0;
  text-decoration: none;
}

.nav-links a:hover,
.dropbtn:hover {
  text-decoration: underline;
}

/* Right section */
.navbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-link {
  font-size: 1rem;
  color: #111;
  text-decoration: none;
}

.nav-link:hover {
  text-decoration: underline;
}

.btn-primary {
  background-color: #6b4eff;
  color: #fff;
  padding: 10px 20px;
  border-radius: 9999px;
  font-weight: 500;
  transition: background 0.2s ease;
  text-decoration: none;
}

.btn-primary:hover {
  background-color: #5a3de0;
  text-decoration: underline;
}

.footer {
    background-color: #1c1f6c;
    color: #ffffffcc;
    padding: 60px 40px 30px;
    font-family: Montserrat, sans-serif;
  }
  
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
  }
  
  .footer-brand {
    flex: 1 1 250px;
    max-width: 300px;
  }
  
  .footer-logo {
    height: 32px;
    margin-bottom: 20px;
  }
  
  .description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .social-icons a {
    margin-right: 16px;
    display: inline-block;
  }
  
  .social-icons img {
    width: 20px;
    height: 20px;
  }
  
  .footer-columns {
    display: flex;
    flex: 3 1 600px;
    flex-wrap: wrap;
    gap: 40px;
  }
  
  .column {
    flex: 1 1 150px;
    min-width: 150px;
  }
  
  .column h4 {
    color: #ccccff;
    font-size: 0.9rem;
    margin-bottom: 14px;
    text-transform: uppercase;
    font-weight: 600;
  }
  
  .column ul {
    list-style: none;
    padding: 0;
  }
  
  .column li {
    margin-bottom: 10px;
  }
  
  .column a {
    color: #ffffffcc;
    font-size: 0.95rem;
    text-decoration: none;
  }
  
  .column a:hover {
    text-decoration: underline;
  }
  
  .footer-bottom {
    border-top: 1px solid #444a8d;
    margin-top: 40px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: #ccccff;
    max-width: 1200px;
    margin-inline: auto;
  }
  
  .legal-links {
    display: flex;
    gap: 20px;
  }
  
  .legal-links a {
    color: #ccccff;
    text-decoration: none;
  }
  
  .legal-links a:hover {
    text-decoration: underline;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
    }
  
    .footer-columns {
      flex-direction: column;
    }
  
    .footer-bottom {
      flex-direction: column;
      gap: 16px;
      text-align: center;
    }
  
    .legal-links {
      justify-content: center;
      flex-wrap: wrap;
    }
  }
  