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

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1000px;
  margin: auto;
}

header {
  background: linear-gradient(135deg, #4f46e5, #3b82f6);
  color: white;
  padding: 80px 20px;
  text-align: center;
}

header h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

header p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.cta-button {
  background-color: white;
  color: #3b82f6;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
}

.cta-button:hover {
  background-color: #e0e7ff;
}

.features {
  background-color: #fff;
  padding: 60px 20px;
}

.features h2 {
  text-align: center;
  margin-bottom: 40px;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.feature {
  background-color: #f3f4f6;
  padding: 20px;
  border-radius: 16px;
  width: 280px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.form-section {
  background-color: #eef2ff;
  padding: 60px 20px;
}

.form-section h2 {
  text-align: center;
  margin-bottom: 30px;
}

form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

input, select, button {
  padding: 12px;
  font-size: 1rem;
  border-radius: 8px;
  border: 1px solid #ccc;
}

button {
  background-color: #4f46e5;
  color: white;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

button:hover {
  background-color: #4338ca;
}

footer {
  background-color: #1f2937;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}
