body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #1a1a1a;
  background: #f9f9f9;
}

header.hero {
  display: flex;
  align-items: right;
  justify-content: space-between;
  padding: 50px 200px;
  background: #0052a5;
  color: #fff;
  flex-wrap: wrap;
  text-align: left;
}

.hero-content {
  flex: 1;
  max-width: 500px;
}

.hero .logo {
  width: 150px;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: 2.5em;
  margin: 0 px;
}

.hero-content p {
  max-width: 500px;
  margin-bottom: 20px;
}

.cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 15px 30px;
  background: #fff;
  color: #0052a5;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s;
}

.cta-button:hover {
  background: #e6e6e6;
}

.hero-illustration {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-illustration img {
  max-width: 50%;
  height: auto;
}

h1 {
  font-size: 2.5em;
  margin: 0 auto 20px;
}

p {
  max-width: 600px;
  margin: 0 auto 20px;
}

section {
  padding: 80px 20px;
  text-align: center;
}

.modules-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.module-card {
  background: #fff;
  border: 1px solid #ddd;
  padding: 20px 30px;
  border-radius: 8px;
  min-width: 180px;
}

.form-section form {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  margin: 30px auto 0;
}

.form-section input,
.form-section select,
.form-section textarea,
.form-section button {
  margin-bottom: 15px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
}

.form-section button {
  background: #0052a5;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.form-section button:hover {
  background: #003f7f;
}

.footer {
  padding: 40px 20px;
  background: #1a1a1a;
  color: #fff;
  text-align: center;
}
