body {
  font: #333;
  font-size: 18px;
  background-color: #f7f7f7;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  font-family: Geneva, Arial, Helvetica, sans-serif;
  line-height: 150%;
}

h1 {
  font-size: 32px;
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 24px;
}

h1,
h2,
h3 {
  font-weight: bold;
  text-transform: uppercase;
  color: #867fcf;
}

header h1,
header h2,
header h3 {
  color: #fff;
}

main {
  display: flex;
  flex-direction: column;
  gap: 40px;
}


.btn {
  display: block;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  height: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 25px;
  text-transform: uppercase;
  min-width: 120px;
  
}

.btn-icon {
  width: 35px;
  height: auto;
}

.btn:hover {
  background-color: rgb(97, 207, 60);
  transition: ease 0.2s;
}

.btn-green {
  background-color: rgb(45, 88, 34);
  color: white;
}

.btn-gray {
  background-color: #333;
  color: white;
}

.btn-purple {
  background-color: #867fcf;
  color: white;
}

.btn-block {
  display: flex;
  gap: 60px;
  align-items: center;
  flex-wrap: wrap;
  container-type: inline-size;
}

@container (max-width: 400px) {
  .btn {
    width: 100%;
  }
}



.container {
  max-width: 1400px;
  width: 80%;
  margin: auto;
  min-width: 300px;
  container-type: inline-size;
}

.header {
  background: #d6d6ff;
  background: linear-gradient(
    150deg,
    rgba(214, 214, 255, 1) 0%,
    rgba(134, 127, 207, 1) 20%,
    rgba(134, 127, 207, 1) 80%,
    rgba(179, 179, 255, 1) 100%
  );
}

.header,
.footer {
  padding: 20px 0;
  font-size: 1rem;
  text-decoration: none;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  flex-wrap: wrap;
  gap: 40px;
}

.header-title {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 16px;
}

@container (max-width: 400px) {
  .header-content {
    width: 300px;
    justify-content: center;
  }

  .btn-block {
    gap: 20px;
  }
}

.logo-img {
  display: block;
  height: 60px;
  width: auto;
}

.footer {
  background-color: #333;
  color: #f7f7f7;
}

.column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@container (max-width: 800px) {
  .column {
    width: 100%;
    justify-content: center;
  }

  .column > .double-column > .left-column,
  .column > .double-column > .right-column {
    width: 100%;
  }
}

.double-column {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.left-column,
.right-column {
  width: calc(50% - 20px);
  min-width: 300px;
  height: 100%;
  display: flex;
  gap: 20px;
  flex-direction: column;
}

.left-column {
  align-items: flex-start;
}

.right-column {
  align-items: flex-start;
}

.content-img {
  display: block;
  min-width: 300px;
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
  /* margin: auto; */
}

.footer-content {
  display: flex;
  justify-content: space-between;
}

.images {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.content-img {
  width: 300px;
}

strong {
  font-weight: bold;
}

.footer-text > p {
  text-decoration: none;
  font-size: 0.8rem;
}