* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #222;
}

body {
  background-color: #f9f9f9;
  line-height: 1.6;
}

.header {
  background-color: #0057cc;
  color: #fff;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}

.header__container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.header__logo {
  font-size: 28px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  flex-shrink: 0;
}

.header__search {
  position: relative;
  width: 300px;
  max-width: 100%;
}

.header__search-input {
  width: 100%;
  padding: 8px 40px 8px 12px;
  border-radius: 20px;
  border: none;
  font-size: 16px;
  color: #222;
  background-color: #fff;
}

.header__search-input::placeholder {
  color: #888;
}

.header__search-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #555;
  font-size: 20px;
  pointer-events: none;
}

.header__social {
  display: flex;
  gap: 20px;
}

.header__social-link .bi{
  color: #fff;
  font-size: 22px;
  transition: color 0.3s;
  text-decoration: none;
}





.section__title {
  color: #0057cc;
  font-size: 1.8rem;
  margin-bottom: 20px;
  border-left: 6px solid #0057cc;
  padding-left: 14px;
}

p,
ul {
  font-size: 1.1rem;
  margin-bottom: 18px;
  color: #333;
}

ul {
  margin-left: 24px;
}

ul li {
  margin-bottom: 10px;
  color: #444;
}

    main {
      padding: 40px 0;
      max-width: 900px;
    }

.text--highlight {
  font-weight: 700;
  color: #222;
}

.footer {
  background-color: #0057cc;
  color: #fff;
  padding: 40px 20px 20px;
  font-size: 14px;
  width: 100%;
}

.footer__container {
  max-width: 900px;
  margin: 0 auto;
}

.footer__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 40px;
  margin-bottom: 20px;
}

.footer__section {
  min-width: 200px;
  max-width: 280px;
}

.footer__section h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #fff;
}

.footer__section p {
  color: #eee;
  line-height: 1.5;
}

.footer__social-icons {
  display: flex;
  gap: 20px;
}

.social-link .bi{
  color: #fff;
  font-size: 20px;
  transition: color 0.3s;
  text-decoration: none;
}

.footer__copy {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 12px;
  font-size: 13px;
  color: #eee;
}

@media (max-width: 720px) {
  .header__container,
  .footer__container {
    max-width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .header__search {
    width: 100%;
    margin: 10px 0;
    max-width: 100%;
  }

  .footer__content {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 24px;
  }

  .footer__section {
    max-width: 100%;
  }

  body {
    padding: 0 15px 40px;
    max-width: 100%;
  }

  .header {
    flex-wrap: wrap;
    padding: 15px 0;
    max-width: 100%;
  }

  .section__title {
    font-size: 1.6rem;
  }

  h2.section__title {
    font-size: 1.3rem;
    margin-top: 40px;
  }
}

.header__container,
.footer__container,
main {
  max-width: 900px;
  margin: 0 auto;
}
