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

:root {
  --white: #ffffff;
  --black: #020b12;
  --gray: #f8f8f8;
  --light-gray: #eeeeee;
  --dark-gray: #bababa;
  --accent: #7a9b76;
}

html,
body {
  font-size: 16px;
  color: var(--black);
  font-family: "Roboto", sans-serif;
  background: var(--white);
}

ul,
li {
  list-style: none;
}

a {
  text-decoration: none;
  color: var(--black);
}

img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

button {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  cursor: pointer;
}

section {
  padding: 40px;
}

.btn {
  transition: all 0.2s ease;
  color: var(--black);
}

.btn:hover {
  background-color: var(--gray);
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.gap-2 {
  gap: 8px;
}

.gap-3 {
  gap: 12px;
}

.gap-4 {
  gap: 16px;
}

.gap-5 {
  gap: 20px;
}

.mb-4 {
  margin-bottom: 16px;
}

.mb-5 {
  margin-bottom: 20px;
}

.mb-6 {
  margin-bottom: 24px;
}

.justify-center {
  justify-content: center;
}

.align-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.container {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 20px;
}

.title {
  font-size: 24px;
  color: white;
  background-color: #7a9b76;
  font-weight: 700;
  padding: 20px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  border-radius: 16px;
  letter-spacing: 0.5px;
}

.title .icon {
  width: 100px;
  height: 100px;
  padding: 20px;
  background: white;
  border-radius: 100%;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--black);
  color: var(--white);
  padding: 16px;
  z-index: 100;
}

.logo {
  text-transform: uppercase;
}

.logo,
.link-item {
  color: var(--white);
}

.link-item.active {
  background-color: var(--accent);
  padding: 8px;
  border-radius: 8px;
}

#hero {
  width: 100%;
  min-height: 100vh;
  background: url("../images/hero.jpg");
  background-position: top;
  background-size: cover;
  padding-top: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-container {
  max-width: 600px;
  width: 100%;
  min-height: 200px;
  padding: 20px;
  -webkit-backdrop-filter: blur(4px);
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);

  border-radius: 16px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.hero-container h1 {
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.hero-container p {
  margin: 0 auto;
  max-width: 400px;
}

.action-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.bg-gray {
  background: var(--gray);
  padding: 20px 0;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
}
.card {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.card-icon {
  max-width: 100px;
}

.card-title {
  font-weight: 500;
  font-size: 20px;
}

.card-number {
  color: red;
  font-size: 24px;
  font-weight: bold;
}

section ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

section ul li {
  padding: 20px;
  background: var(--light-gray);
  border-radius: 16px;
  letter-spacing: 0.5px;
  color: var(--black);
  transition: all 0.2s linear;
}

section ul li:hover {
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

footer {
  padding: 20px;
  background-color: var(--black);
}

@media screen and (max-width: 767px) {
  .action-cards,
  section ul {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 600px) {
  .title {
    font-size: 20px;
  }

  .action-cards,
  section ul {
    grid-template-columns: 1fr;
  }
}
