body {
    font-family: Poppins, sans-serif;
    margin: 0;
    background-color: #cbf3f0;
}

#myBtn {
    display: none;
    position: fixed;
    bottom: 50px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #396A62;
    color: white;
    cursor: pointer;
    padding: 9px;
    border-radius: 10px;
    font-size: 20px;
    transition: background-color 0.3s ease;
}

#myBtn:hover {
    background-color: #F8BDC4;
}

.container {
    width: 900px;
    margin: auto;
    max-width: 90vw;
    text-align: center;
    padding-top: 10px;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: #396A62;
    font-family: "Imprint MT Shadow", serif;
    color: #c8ab2d;
    font-size: 30px;
}

main section {
    background-color: #def6ca;
    padding: 30px;
    margin: 40px auto;
    width: 80%;
    border-radius: 10px;
    font-size: 18px;
}

.contactbox {
    text-align: center;
    margin: 40px 0;
}

#mbtn {
    background-color: #396A62;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#mbtn:hover {
    background-color: #F8BDC4;
    color: #333;
}

.modal {
    display: none; 
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
}

/* When .show is added via JavaScript, display the modal */
.modal.show {
    display: flex;
}



.modal-content {
    background: white;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    font-family: Poppins, sans-serif;
}

.modal-header h5 {
    margin: 0;
    font-size: 24px;
    color: #396A62;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 2px solid #2B4F49;
    border-radius: 6px;
    font-size: 16px;
    font-family: Poppins, sans-serif;
}

.modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.modal-footer .btn {
    background-color: #396A62;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.modal-footer .btn:hover {
    background-color: #F8BDC4;
    color: #333;
}

.modal-footer .close {
    background: transparent;
    color: #333;
    font-size: 28px;
    border: none;
    cursor: pointer;
}

footer {
    background-color: #2b4f49;
    color: #c8ab2d;
    font-size: 18px;
    text-align: center;
  }

  .footer-center {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 15px 0;
  }

  .footer-links a {
    margin: 0 8px;
    white-space: nowrap;
  }

  .social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 15px 0;
  }

  .social-icons img {
    width: 30px;
  }

  .worldpay-logo,
  .payment-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
  }

  .worldpay-logo img,
  .payment-logos img {
    height: 50px;
  }

  @media (max-width: 768px) {
    .accordion {
      display: block;
    }

    .panel a {
      display: block;
      padding: 2px;
      text-decoration: none;
      color: #c8ab2d;
    }

    .full-footer-links {
      display: none;
    }

    .footer-links {
      flex-direction: column;
      align-items: center;
    }

    .footer-links a {
      margin: 5px 0;
    }

    .social-icons,
    .payment-logos {
      flex-wrap: wrap;
      gap: 10px;
    }
  }

  /* Link Styles */
a:link, a:visited {
    color: #c8ab2d;
    font-family: Imprint MT Shadow;
    background-color: transparent;
    text-decoration: none;
}

a:hover {
    color: white;
    font-family: Imprint MT Shadow;
    background-color: transparent;
    text-decoration: underline;
}

a:active {
    color: #def6ca;
    font-family: Imprint MT Shadow;
    background-color: transparent;
    text-decoration: underline;
}

