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

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  background: #fff;
  color: #222;
}

header {
  background: #fff;
  padding: 20px 40px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #1e1e1e;
}

nav a {
  margin-right: 25px;
  text-decoration: none;
  color: #1e1e1e;
  font-weight: 500;
}

.login-btn {
  background: #1e2a4f;
  color: white;
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 40px;
  background-color: #f5f8ff;
  min-height: 400px;
}

.hero-text {
  max-width: 600px;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.hero p {
  margin-bottom: 20px;
  font-size: 16px;
  color: #444;
}

.learn-btn {
  background-color: #2563eb;
  color: white;
  padding: 12px 20px;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.hero-art {
  width: 300px;
  height: 200px;
  background: linear-gradient(90deg, #4f46e5, #06b6d4);
  border-radius: 50% 0 50% 0;
}

.info-section {
  display: flex;
  justify-content: space-between;
  padding: 60px 40px;
  gap: 40px;
}

.column {
  flex: 1;
  min-width: 200px;
}

.column h2 {
  margin-bottom: 15px;
  font-size: 20px;
}

.column ul {
  list-style-type: disc;
  margin-left: 20px;
}

footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 15px;
}
.contact-section form {
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 10px;
  max-width: 100%;
}

.contact-section input,
.contact-section textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

.contact-section button {
  background-color: #1e2a4f;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.contact-section button:hover {
  background-color: #333;
}
