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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

header {
  background-color: #1f2937;
  padding: 16px 48px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: 180px;
  margin-right: 180px;
}

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

nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
}

nav ul li a {
  color: #d1d5db;
  text-decoration: none;
  font-size: 0.9rem;
}

.hero {
  background-color: #1f2937;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 64px;
  padding: 64px 48px;
}

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

.hero-text h1 {
  font-size: 48px;
  margin-bottom: 10px;
  font-weight: 900;
}

.hero-text p {
  color: #e5e7eb;
  font-size: 18px;
  margin-bottom: 24px;
  line-height: 1.5;
}

.hero-text button {
  background-color: #3882f6;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 0.95rem;
}

.hero-image {
  width: 400px;
  height: 200px;
  background-color: #6b7280;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #d1d5db;
  font-size: 0.85rem;
}

.info {
  padding: 64px 48px;
  text-align: center;
}

.info h1 {
  font-size: 36px;
  margin-bottom: 40px;
  font-weight: 900;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 200px;
}

.card-img {
  width: 150px;
  height: 150px;
  border: 5px solid #3882f6;
  border-radius: 20px;
  margin-bottom: 12px;
}

.card p {
  font-size: 20px;
  color: #6b7280;
  text-align: center;
}

.quote {
  background-color: #e5e7eb;
  padding: 64px 48px;
}

.quote blockquote {
  font-size: 36px;
  font-weight: 300;
  padding-left: 20%;
  padding-right: 20%;
  font-style: italic;
  text-align: justify;
}

.quote p {
  font-style:normal;
  font-size: 26px ;
  font-weight:600;
  margin-right: 20%;
  text-align: end;
}

.cta {
  background-color: #3882f6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 64px;
  margin: 40px auto;
  max-width: 900px;
  border-radius: 8px;
}

.cta-text h3 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.cta-text p {
  color: #dbeafe;
  font-size: 0.85rem;
}

.cta button {
  color: #ffffff;
  background-color: transparent;
  border: 2px solid white;
  padding: 10px 20px;
  border-radius: 6px;
  white-space: nowrap;
}

footer {
  background-color: #1f2937;
  color: #ffffff;
  text-align: center;
  padding: 24px;
  font-size: 0.85rem;
}
