* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #f0f2f5;
  display: flex;
  flex-direction: column;
}

/* HEADER */
header {
  background-color: white;
  padding: 16px 30px;
  border-bottom: 1px solid #e0e0e0;
}

.header-logo {
  height: 60px;
  width: auto;
}

/* MAIN */
main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.card {
  display: flex;
  align-items: stretch;
  border-radius: 14px;
  overflow: hidden;
  border: 3px solid #FFA500;
  max-width: 820px;
  width: 100%;
}

.card-image {
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  min-width: 200px;
}

.card-image img {
  width: 150px;
  height: auto;
}

.card-text {
  background-color: #FFA500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 30px 40px;
}

.message {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 56px;
  line-height: 1;
  color: white;
  font-weight: bold;
  text-align: center;
}

/* DESCRIPTION */
.description-block {
  max-width: 820px;
  width: 100%;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  color: #111;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.7;
}

/* FOOTER */
footer {
  background-color: white;
  border-top: 1px solid #e0e0e0;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-logo {
  height: 50px;
  width: auto;
}

.social-icons {
  display: flex;
  gap: 14px;
}

.social-icons a {
  color: #222;
  font-size: 20px;
  text-decoration: none;
  transition: color 0.2s;
}

.social-icons a:hover {
  color: #FFA500;
}

.footer-right {
  display: flex;
  gap: 24px;
}

.footer-right a {
  color: #003087;
  font-size: 13px;
  font-weight: bold;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.footer-right a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 680px) {
  .message {
    font-size: 8vw;
  }

  .card-image {
    min-width: 120px;
  }

  .card-image img {
    width: 90px;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
