li {
  font-weight:  400;
  color: var(--text-dark-color);
}
a.btn.btn-white,
a.btn.btn-white:active {
  background: var(--background1-color);
  color: var(--text-dark-color);
  border-color: var(--button-hover-color);
}
a.btn.btn-white:hover {
  background: var(--button-hover-color);
  color: var(--text-dark-color);
  border-color: var(--button-hover-color);
}

@keyframes bouncing {
  0% {
    bottom: 0;
  }
  50% {
    bottom: 20px;
  }
  100% {
    bottom: 0;
  }
}

.arrow-down {
  position: fixed;
  bottom: 20px;
  left: 50%;
  animation: bouncing 1.5s infinite ease-in-out;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.arrow-down::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  margin: auto;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-top: 25px solid var(--h2-color); /* Color of Arrow/Triangle */
}
.arrow-right {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid white;
  border-right: 2px solid white;
  transform: rotate(45deg);
  margin-left: 8px;
}

.regions {
  padding-top: 6rem;
  padding-bottom: 6rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background: linear-gradient(108.99deg, #EDF1F5 0%, #DDEAF6 100.89%);
  text-align: center;
}
.regions > div {
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.region__cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
}
@media (max-width: 1024px) {
  .region__cards {
    flex-wrap: wrap;
  }
}
.region-card {
  gap: 1rem;
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  
  position: relative;
  border-radius: 1rem;
  background: var(--background1-color);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  min-width: 448px;
  max-width: 30rem;
  transition: transform 0.3s ease-in-out;
}
.region-card:hover {
  transform: translateY(-5px);
}
.card__header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  padding-bottom: 1rem;
  flex: 2;
}
.card__header p {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.6;
  letter-spacing: 0;
  text-transform: uppercase;
}
.country-outline {
  max-height: 120px;
  object-fit: contain;
}
.card__description {
  font-size: 1.1rem;
  color: var(--card-text-color);
  text-align: center;
  margin-top: -0.5rem;
  margin-bottom: 0.5rem;
}
.card__content__feature {
  display: flex;
  flex-direction: column;
  background-color: var(--card-color);
  border-radius: 8px;
  padding: 1.5rem 1rem;
  text-align: left;
  flex: 6;
}
.card__content_components {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  background-color: var(--card-color);
  border-radius: 8px;
  padding: 1.5rem 1rem;
  text-align: left;
  flex: 2;
}
.list-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  margin-bottom: 0.5rem;
  color: var(--card-text-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
ul.features-list {
  list-style: none;
  padding-left: 0;
}
ul.features-list li {
  background-image: url("/static/assets/icons/checked.svg");
  background-repeat: no-repeat;
  background-size: 16px 16px;
  padding-left: 24px;
  margin-bottom: 0.8rem;
  line-height: 1;
  font-size: 1.05rem;
}
ul.target-group-list {
  list-style: none;
  padding-left: 0;
}
ul.target-group-list li {
  background-image: url("/static/assets/icons/people.svg");
  background-repeat: no-repeat;
  background-size: 16px 16px;
  padding-left: 26px;
  margin-bottom: 1rem;
  line-height: 1;
}
.components-list {
  display: flex;
  gap: 24px;
}
.category-icon {
  font-size: 1.1rem;
  line-height: 1;
  width: 48px;
  height: 48px;
}
.card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: nowrap;
  flex: 1;
}
.card__footer > .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  height: 48px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .card__content {
    flex-direction: column;
    gap: 1rem;
  }
  .region-card {
    max-width: 90%;
  }
}

#text-content1 > div {
  flex-direction: column;
  align-items: center;
}
#text-content1 .text-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  width: 80%;
  align-items: start;
  justify-content: center;
  margin-bottom: 2rem;
}
#text-content1 .grid__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  max-width: 100%;
}
#text-content1 .grid__image {
  justify-content: flex-start;
  width: 100%;
}
#text-content1 .grid__image img {
  width: 100%;
  height: auto;
}
#text-content1 .grid__text > div {
  display: flex;
  align-items: center;
  flex-direction: row;
  min-height: 80px;
  max-width: 540px;
}
#text-content1 .grid__text > div > span {
  margin-bottom: 0rem;
  font-size: 1.15rem;
  line-height: 1.4;
  color: var(--text-dark-color);
} 
#who-it-for h2 {
  text-align: center;
}
#text-content1 .cellular__text#who-it-for {
  padding-top: 3rem;
  padding-bottom: 6rem;
}
#who-it-for .target-group-list > li {
  font-size: 1.15rem;
}

.circle-number {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #E8F1FA;
  border: none;
  color: #1B4A6B;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
  margin-right: 0.75rem;
}

.newsletter {
  padding-top: 6rem;
  padding-bottom: 6rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background-color: var(--background3-color);
  text-align: center;
}
.newsletter > div {
  width: 100%;
  max-width: 82rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.newsletter__heading {
  margin-bottom: 2rem;
}
.newsletter__heading h2 {
  padding-top: 1rem;
  font-size: 1.953rem;
  font-weight: 700;
  color: var(--text-light-color);
}
.newsletter__text {
  color: var(--text-light-color);
  display: inline-block;
  width: 100%;
  max-width: 50rem;
  padding-bottom: 1rem;
}
.newsletter__text a{
  color: var(--text-light-color);
}

.logos {
  padding-top: 6rem;
  padding-bottom: 6rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background-color: var(--background1-color);
  text-align: center;
}
.logos > div {
  width: 100%;
  max-width: 82rem;
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.logos > div a {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1024px) {
  .logos > div {
    justify-content: center;
  }
  .logos a {
    width: 45%;
  }
}
@media (max-width: 768px) {
  .logos > div {
    flex-direction: column;
  }
  .logos a {
    width: 100%;
  }
}
