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

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
}

.hero {
  background-color: #1F2937;
  color: #F9FAF8;
  padding: 20px 0 50px;
}

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

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

.logo {
  font-size: 24px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-img {
  width: 30px;
  height: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #E5E7EB;
  font-size: 18px;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
  gap: 30px;
}

.hero-text h2 {
  font-size: 48px;
  font-weight: 800;
  color: #F9FAF8;
}

.hero-text p {
  font-size: 18px;
  color: #E5E7EB;
}

.btn {
  background-color: #3882F6;
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

.hero-image img {
  background-color: gray;
  width: 300px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.info {
  text-align: center;
  margin: 60px 0;
}

.info h3 {
  font-size: 36px;
  font-weight: 800;
  color: #1F2937;
}

.info-boxes {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.box {
  border: 3px solid #3882F6;
  border-radius: 10px;
  width: 150px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 7px;
  transition: transform 0.3s;
}

.card-img:hover {
  transform: scale(1.05);
}

.quote {
  background-color: #E5E7EB;
  padding: 50px 20px;
  text-align: center;
  font-size: 36px;
  font-style: italic;
  color: #1F2937;
}

.quote-author {
  text-align: right;
  font-weight: bold;
  margin-top: 10px;
}

.cta {
  background-color: #3882F6;
  color: white;
  margin: 60px auto;
  width: 90%;
  max-width: 1000px;
  padding: 30px 40px;
  border-radius: 10px;
}

.cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid white;
  color: white;
  padding: 8px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.btn-outline:hover {
  background-color: white;
  color: #3882F6;
}

footer {
  background-color: #1F2937;
  color: #f1f1f1;
  padding: 20px 0;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.bottom-text {
  margin-bottom: 5px;
  font-size: 14px;
}

.nav-links-footer {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
  gap: 20px;
}

.nav-links-footer a {
  color: #f1f1f1;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-links-footer a:hover {
  color: #4A90E2;           
}

@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text h2 {
    font-size: 36px;
  }

  .box {
    width: 120px;
    height: 120px;
  }

  .cta-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-text h2 {
    font-size: 28px;
  }

  .box {
    width: 100px;
    height: 100px;
  }
}
