.country_selector_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

.country_selector_card {
  background-color: #b9fff1;
  border-radius: 24px;
  padding: 2rem;
  text-align: center;
  border: 2px solid #135776;
  width: 100%;
  max-width: 320px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.country_selector_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(19, 87, 118, 0.2);
}

.country_selector_title {
  color: #135776;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.country_selector_flag_container {
  width: 120px;
  height: 80px;
  margin: 0 auto 1rem;
}

.country_selector_flag {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.country_selector_country_name {
  color: #135776;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.country_selector_continue_btn {
  background-color: #135776;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 0.5rem 2rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.country_selector_continue_btn:hover {
  background-color: #0e4259;
}

.country_selector_side_flag {
  width: 80px;
  opacity: 0.7;
  cursor: pointer;
  transition: all 0.3s ease;
}

.country_selector_side_flag:hover {
  opacity: 1;
}

.country_selector_arrow {
  font-size: 2rem;
  color: #135776;
  display: none;
}

@media (min-width: 768px) {
  .country_selector_container {
    flex-direction: row;
  }

  .country_selector_card {
    padding: 2.5rem;
  }

  .country_selector_title {
    font-size: 2rem;
  }

  .country_selector_flag_container {
    width: 180px;
    height: 120px;
  }

  .country_selector_country_name {
    font-size: 1.5rem;
  }

  .country_selector_continue_btn {
    padding: 0.75rem 3rem;
    font-size: 1.25rem;
  }

  .country_selector_side_flag {
    width: 120px;
  }

  .country_selector_arrow {
    display: block;
  }
}
