body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: linear-gradient(180deg, rgb(54, 0, 0), black);
  color: #ffffff;
  overflow-x: hidden;
  scroll-behavior: smooth;
  position: relative;
}

.wtihub-hero {
  text-align: center;
  padding: 40px 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.wtihub-title {
  font-size: 32px;
  font-weight: 700;
  color: rgb(255, 255, 255);
}

.wtihub-country-box {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  align-self: center;
  justify-content: center;
}

.wtihub-country-box label {
  font-size: 16px;
  padding-top: 8px;
}

#wtihub-country-select {
  border-radius: 10px;
  padding: 5px 10px;
  color: #000;
  font-weight: 900;
}

.wtihub-plan-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 30px;
  color: rgb(54, 0, 0);
}

.wtihub-plan-card {
  background: white;
  padding: 25px;
  border-radius: 10px;
  width: 260px;
  box-shadow: 2px 4px 10px rgba(255, 255, 255, 0.7);
}

#wtihub-plan-plus{
  position: relative;
  z-index: 1;
}

#wtihub-absolute{
  background-color: rgb(54, 0, 0);
  color: #fff;
  padding: 3px 5px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: none;
  word-wrap: break-word;
  font-size: 0.8rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -15px;
  right: -9px;
  transform: rotate(30deg);
}


.wtihub-plan-card#wtihub-plan-plus h2 {
  margin-top: 0;
  background-color: rgb(54, 0, 0);
  width: 100%;
  color: #fff;
  padding: 5px 0px;
  padding-left: 10px;
  border-radius: 10px;
  box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.9);
}

#wtihub-plan-starter h2{
  margin-top: 0;
  background-color: rgb(54, 0, 0);
  width: 100%;
  color: #fff;
  padding: 5px 0px;
  padding-left: 10px;
  border-radius: 10px;
  box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.9);
}

.wtihub-price {
  font-size: 22px;
  margin: 10px 0;
  font-weight: bold;
}

.wtihub-plan-card ul li{
  padding-bottom: 10px;
}

.wtihub-btn {
  display: block;
  background: black;
  color: white;
  padding: 10px 20px;
  text-align: center;
  border-radius: 8px;
  margin-top: 15px;
  text-decoration: none;
  transition: 0.3s;
}

.wtihub-btn:hover {
  background: transparent;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.9);
  border: none;
  color: #000;
}

.wtihub-flash {
  animation: flashAnim 1s ease-in;
}

.footer {
  text-align: center;
  padding: 20px;
  border-top: 4px solid rgb(54, 0, 0);
}

.footer-top{
  text-align: center;
  padding: 5px;
  border-bottom: 4px solid rgb(255, 255, 255);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 15px;
  padding-right: 15px;
}

.admin-link {
  padding: 5px 10px;
  text-decoration: none;
  background-color: #fff;
  border-radius: 5px;
  color: rgb(54, 0, 0);
  font-size: 0.9rem;
  font-weight: 600;
}

@keyframes flashAnim {
  0% { color: #fff; }
  100% { color: initial }
}

@media (min-width: 768px) {
  .wtihub-plan-section {
    flex-direction: row;
    gap: 20px;
  }  
}
