
* {
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #1f2937;
}
header {
  background-color: #ffffff;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e5e7eb;
}
header img {
  height: 40px;
}
nav a {
  margin-left: 30px;
  text-decoration: none;
  color: #374151;
  font-weight: 500;
}
nav a:hover {
  text-decoration: underline;
}
.hero {
  background-color: #211965;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 60px;
  flex-wrap: wrap;
}
.hero-content {
  max-width: 500px;
}
.hero-content h2 {
  color: #34d399;
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.hero-content h1 {
  font-size: 3rem;
  margin: 0 0 20px;
}
.hero-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}
.hero-content .cta-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: transparent;
  color: white;
  border: 2px solid #34d399;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
}
.hero-content .cta-button:hover {
  background-color: #34d399;
  color: #1e1b4b;
}
.hero-image img {
  max-width: 1000px;
  width: 100%;
  height: auto;
}
footer {
  background-color: #f3f4f6;
  padding: 20px 40px;
  text-align: center;
  font-size: 0.9rem;
  color: #6b7280;
}


.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
