/* CSS Document */

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #FDF6EC;
  color: #1A2A6C;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1A2A6C;
  padding: 20px;
  flex-wrap: wrap;
}

.logo img {
  height: 40px;
}

.nav a {
  color: #fff;
  margin: 0 15px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 18px;
}

.icons img {
  height: 20px;
  margin-left: 15px;
}

/* Hero */
.hero {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 40px 20px;
}

.hero-text {
  flex: 1 1 60%;
}

.hero-card {
  flex: 1 1 30%;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.hero-card button {
  background: #F4C542;
  border: none;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: bold;
  cursor: pointer;
}

/* Approach */
.approach {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}

.columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-top: 30px;
}

.column {
  flex: 1 1 250px;
  margin: 10px;
}

/* Footer */
.footer {
  background: #1A2A6C;
  color: #F4C542;
  text-align: center;
  padding: 30px 20px;
}

.footer-icons img {
  height: 20px;
  margin: 0 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
  }

  .columns {
    flex-direction: column;
    align-items: center;
  }

  .nav, .icons {
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }

  .nav a {
    display: inline-block;
    margin: 10px;
  }
}