/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  color: #1f2937;
  line-height: 1.6;
}

/* Utility container */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* Header */
header {
  background-color: #1f2937;
  color: #f9faf8;
  padding: 20px 0;
}

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

header h1 {
  font-size: 24px;
  font-weight: 900;
}

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

header nav a {
  text-decoration: none;
  color: #e5e7eb;
  font-size: 18px;
}

/* Hero section */
.hero {
  background-color: #1f2937;
  color: #f9faf8;
  padding: 60px 0;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-text h2 {
  font-size: 48px;
  font-weight: 900;
}

.hero-text p {
  color: #e5e7eb;
  font-size: 18px;
  margin: 20px 0;
}

.hero-text button {
  background-color: #3882f6;
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
}

/* Hero image placeholder */
.hero-image .placeholder {
  background-color: #6b7280;
  color: #e5e7eb;
  width: 300px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Info section */
.info {
  padding: 60px 0;
}

.info h3 {
  text-align: center;
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 40px;
}

.cards {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  text-align: center;
  width: 200px;
}

.card .box {
  width: 100%;
  height: 150px;
  border: 2px solid #3882f6;
  border-radius: 10px;
  margin-bottom: 10px;
}

/* Quote section */
.quote {
  background-color: #e5e7eb;
  padding: 60px 0;
  text-align: center;
}

.quote-text {
  font-size: 36px;
  font-style: italic;
  color: #1f2937;
  margin-bottom: 20px;
}

.quote-author {
  font-weight: 900;
}

/* CTA section */
.cta {
  padding: 60px 0;
}

.cta-box {
  background-color: #3882f6;
  color: #f9faf8;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px;
  border-radius: 10px;
}

.cta-text h4 {
  font-size: 24px;
  font-weight: 900;
}

.cta-text p {
  font-size: 18px;
}

.cta-box button {
  background-color: #3882f6;
  color: #f9faf8;
  border: 2px solid white;
  padding: 10px 25px;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
}

/* Footer */
footer {
  background-color: #1f2937;
  color: #e5e7eb;
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
}
