body {
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.pricecard {
  background-color: #fffc;
  border: 2px solid #8100a1;
  border-radius: 10px;
  padding: 15px;
  margin: 10px auto;
  max-width: 400px;
  color: #000;
  box-shadow: 0 4px 8px rgb(129 0 161 / 0.3);
}

.pricecard h3 {
  text-align: center;
  color: #8100a1;
  margin-bottom: 15px;
}

.pricecard label {
  display: inline-block;
  margin-top: 10px;
  font-weight: 700;
}

.pricecard select,
.pricecard input[type="number"] {
  width: 100%;
  padding: 5px;
  margin-top: 5px;
  border-radius: 5px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

.pricecard input[type="checkbox"] {
  margin-right: 8px;
  transform: scale(1.2);
  vertical-align: middle;
}

.pricecard p {
  margin-top: 15px;
  font-weight: 700;
  color: #8100a1;
  text-align: center;
}

@media (max-width: 600px) {
  .pricecard {
    max-width: 90%;
    padding: 10px;
  }
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 10px;
}

h1 {
  text-align: center;
  font-size: calc(2.5vw + 1.5rem);
}

h2 {
  font-size: calc(1.5vw + 1rem);
  text-align: center;
  margin: 0;
}

h3 {
  font-size: calc(1vw + 0.5rem);
}

.title-info {
  padding: 5% 15%;
  font-size: 1.4rem;
  line-height: 1.8;
  text-align: center;
  margin: 10% auto;
  max-width: 80%;
}

.img {
  width: 250px;
  aspect-ratio: 2 / 1;
  margin: 10px;
  border: 5px solid #fefae0;
  border-radius: 10px;
  object-fit: contain;
}

.img:hover {
  border: 5px solid #fff;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.containerimg {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px;
}

@media only screen and (max-width: 480px) {
  .containerimg {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 5px;
  }
  .containerimg .img {
    width: 90vw;
    max-width: 300px;
    height: auto;
    margin: 0;
  }
}

#logo {
  float: left;
  height: 50px;
  margin: 5px;
  border-radius: 15px 10px 50px 20px;
}

.topnav {
  display: flex;
  flex-direction: row;
  align-items: first baseline;
  justify-content: left;
  background: #d4d4d4;
  background-size: 600% 600%;
  padding: 10px 20px;
  position: relative;
  z-index: 1000;
  border: solid 2px #dbd7db;
  box-shadow: 0 2px 5px rgb(0 0 0 / 0.2);
}

.topnav a {
  color: #000;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  display: inline-flex;
  align-items: center;
  border-radius: 4px;
  position: relative;
}

.topnav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: orange;
  transition: width 0.3s ease;
}

.topnav a:hover::after {
  width: 100%;
}

.topnav a:hover {
  color: #fff;
}

.topnav .icon {
  display: none;
  cursor: pointer;
  font-size: 24px;
  color: #da4906;
  padding: 10px;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown .dropbtn {
  color: #000;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  display: inline-flex;
  align-items: center;
  transition: background-color 0.3s ease, color 0.3s ease;
  border-radius: 4px;
  position: relative;
}

.dropdown .dropbtn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: orange;
  transition: width 0.3s ease;
}

.dropdown .dropbtn:hover::after {
  width: 100%;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 180px;
  box-shadow: 0 8px 16px 0 rgb(0 0 0 / 0.2);
  z-index: 1001;
  border-radius: 4px;
  top: 100%;
  left: 0;
}

.dropdown-content a {
  color: #000;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
  border-radius: 0;
  transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
  color: #000;
}

.dropdown:hover .dropdown-content {
  display: block;
}

@media only screen and (max-width: 800px) {
  .topnav {
    display: flex;
    flex-direction: column;
    align-items: first baseline;
    justify-content: left;
  }
  .topnav a:not(:first-child),
  .dropdown .dropbtn {
    display: none;
  }
  .topnav a.icon {
    display: block;
  }
  .topnav.responsive {
    position: relative;
  }
  .topnav.responsive a.icon {
    position: absolute;
    right: 10px;
    top: 10px;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
    padding: 12px 16px;
    border-top: 1px solid rgb(0 0 0 / 0.2);
  }
  .topnav.responsive .dropdown {
    float: none;
    width: 100%;
  }
  .topnav.responsive .dropdown-content {
    position: relative;
    background-color: #fff0;
    box-shadow: none;
    min-width: 100%;
  }
  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
    padding: 12px 16px;
    border-radius: 0;
  }
  .topnav.responsive .dropdown-content a {
    color: #3b3b3b;
    padding-left: 30px;
    background-color: rgb(247 211 244 / 0.966);
    border-radius: 0;
  }
  .topnav.responsive .dropdown-content a:hover {
    background-color: rgb(233 144 225 / 0.8);
  }
}

.top-bar {
  background-color: #222;
  color: #eee;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  padding: 5px 20px;
  font-family: Arial, sans-serif;
  white-space: nowrap;
  overflow: hidden;
}

@media only screen and (max-width: 600px) {
  .top-bar {
    display: none;
  }
}

.site-footer {
  background-color: #1a1a1a;
  color: #fff;
  max-width: 100%;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 100%;
  margin: 0 auto 30px;
}

.footer-column {
  width: 280px;
  color: #ccc;
}

.footer-column h6 {
  font-size: 18px;
  color: #f57c00;
  margin-bottom: 15px;
}

.footer-column p,
.footer-column a {
  color: #eee;
  font-size: 14px;
  line-height: 1.6;
  text-decoration: none;
}

.footer-column a:hover {
  text-decoration: underline;
}

.footer-follow {
  width: 280px;
  text-align: left;
}

.footer-follow h6 {
  font-size: 18px;
  color: #f57c00;
  margin-bottom: 15px;
}

.social-icons {
  display: flex;
  gap: 15px;
  align-items: center;
}

.social-icons a img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.footer-bottom {
  text-align: center;
  padding-top: 15px;
  border-top: 1px solid #444;
  font-size: 13px;
  color: #888;
}

.footer-follow {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.footer-follow h6 {
  font-size: 20px;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.social-icons img {
  width: 10vw;
  max-width: 50px;
  min-width: 30px;
  height: auto;
  margin: 0 5px;
}

.back-to-top a {
  color: #007bff;
  text-decoration: none;
}

.back-to-top a:hover {
  text-decoration: underline;
}

.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 0.7);
  z-index: 999;
}

.popup-content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 20px;
  width: 80%;
  max-width: 600px;
  height: auto;
  max-height: 80%;
  overflow-y: auto;
  box-shadow: 0 4px 8px rgb(0 0 0 / 0.2);
  z-index: 1000;
  border-radius: 10px;
}

.popup-content h3 {
  color: #333;
}

.popup-content p {
  color: #555;
}

.popup-content .close {
  position: absolute;
  top: 10px;
  right: 20px;
  color: #aaa;
  font-size: 24px;
  cursor: pointer;
}

.popup-content .social-icons img {
  width: 30px;
  margin: 10px;
}

.pricing {
  background-color: #332f3273;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgb(0 0 0 / 0.1);
  padding: 20px;
  margin: 20px auto;
  max-width: 600px;
  text-align: left;
}

.pricing h2 {
  color: #fff;
  font-size: 1.8em;
  margin-bottom: 15px;
  border-bottom: 2px solid #8100a1;
  padding-bottom: 5px;
}

.pricing p {
  color: #fff;
  line-height: 1.6;
}

.pricing strong {
  color: #fff;
  font-size: 1.5em;
}

.pricing em {
  color: #b6b6b6;
}

.pricing ul {
  list-style-type: disc;
  padding-left: 20px;
}

.pricing li {
  margin-bottom: 10px;
}

.pricing b {
  color: #f04cb9;
  cursor: pointer;
  text-decoration: underline;
}

.pricing b:hover {
  color: #0056b3;
}

.reasons {
  background-color: rgb(255 255 255 / 0.623);
  padding: 20px;
  border: solid #000 2px;
  max-width: 600px;
  margin: 20px auto;
  box-shadow: 0 4px 8px rgb(0 0 0 / 0.1);
}

.reasons h2 {
  text-align: center;
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 15px;
}

.reasons ul {
  list-style: none;
  padding-left: 0;
  font-size: 1.1rem;
  color: #222;
}

.reasons ul li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 40px;
  background-image: url(Photos/dune.png);
  background-size: 30px;
  background-repeat: no-repeat;
  background-position: left top;
}

.reasons h2,
.reasons ul {
  animation: fadeIn 1s ease-in-out;
  opacity: 0;
  animation-fill-mode: forwards;
}

.reasons h2:nth-child(1) {
  animation-delay: 0.3s;
}

.reasons ul:nth-child(2) {
  animation-delay: 0.5s;
}

.reasons h2:nth-child(3) {
  animation-delay: 0.7s;
}

.reasons ul:nth-child(4) {
  animation-delay: 0.9s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

button {
  padding: 10px 15px;
  background-color: #fff0;
  color: #000;
  border: none;
  cursor: pointer;
}

.icon {
  width: 16px;
  height: 16px;
}

.icon .modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0 0 0 / 0.9);
  justify-content: center;
  align-items: center;
}

.icon .modal-content {
  max-width: 90%;
  max-height: 80%;
}

.icon .prev,
.icon .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  transition: 0.6s ease;
  transform: translateY(-50%);
}

.icon .prev {
  left: 20px;
}

.icon .next {
  right: 20px;
}

ul {
  list-style-type: disc;
  font-size: 16px;
}

@media only screen and (max-width: 768px) {
  .img {
    width: 200px;
    height: 100px;
    margin: 10px;
    border: 5px solid #fefae0;
    transition-duration: 0.5s;
  }
  .img:hover {
    border: 5px solid #fff;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    
  }
}

@media only screen and (max-width: 480px) {
  .containerimg {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 5px;
  }
  .containerimg .img {
    width: 90vw;
    max-width: 300px;
    height: auto;
    margin: 0;
  }
}

@media only screen and (max-width: 800px) {
  .topnav {
    display: flex;
    flex-direction: column;
    align-items: first baseline;
    justify-content: left;
  }
  .topnav a:not(:first-child),
  .dropdown .dropbtn {
    display: none;
  }
  .topnav a.icon {
    display: block;
  }
  .topnav.responsive {
    position: relative;
  }
  .topnav.responsive a.icon {
    position: absolute;
    right: 10px;
    top: 10px;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
    padding: 12px 16px;
    border-top: 1px solid rgb(0 0 0 / 0.2);
  }
  .topnav.responsive .dropdown {
    float: none;
    width: 100%;
  }
  .topnav.responsive .dropdown-content {
    position: relative;
    background-color: #fff0;
    box-shadow: none;
    min-width: 100%;
  }
  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
    padding: 12px 16px;
    border-radius: 0;
  }
  .topnav.responsive .dropdown-content a {
    color: #3b3b3b;
    padding-left: 30px;
    background-color: rgb(247 211 244 / 0.966);
    border-radius: 0;
  }
  .topnav.responsive .dropdown-content a:hover {
    background-color: rgb(233 144 225 / 0.8);
  }
}
