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

/* Sticky Navigation Bar */
.navbar {
  background-color: #3D42E4;
  position: sticky;
  top: 0;
  width: 100%;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
  color: white;
  font-size: 24px;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: #FFFFFF;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #56589E;
}

.contact-section {
  padding: 60px 30px;
  max-width: 700px;
  margin: auto;
  text-align: center;
}

.contact-section h2 {
  color: #3D42E4;
  margin-bottom: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.form-group label {
  margin-bottom: 5px;
  font-weight: 600;
  color: #3D42E4;
}

.form-group label span {
  color: red;
}

.form-group input,
.form-group textarea {
  padding: 10px 12px;
  border: 1px solid #A7A9DF;
  border-radius: 6px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #56589E;
}

.submit-btn {
  background-color: #3D42E4;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #56589E;
}
footer {
  text-align: center;
  padding: 20px;
  background-color: #f0f0f0;
  font-size: 16px;
  color: #555;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.05);
}