* {
  margin: 0px;
  padding: 0px;
  outline: 0px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: Inter, 'Open Sans', sans-serif;
  color: rgb(19, 19, 19);
  line-height: 19px;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100vh;
  background: #fafafa;
}

.contact-page-container {
  padding-top: 100px;
}

/* header */

header {
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  border-bottom: 1px solid rgb(219, 219, 219);
}

header .login-btns {
  display: flex;
}

header .login-btns .sign-in-btn {
  text-decoration: none;
  height: 40px;
  padding: 12px 20px 11px;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  cursor: pointer;
  border: 0px;
  border-radius: 11px;
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  color: rgb(255, 255, 255);
  background: rgb(234, 76, 137);
}

/* header end */

.contact-title {
  text-align: center;
  padding-top: 25px;
  font-size: 24px;
  color: #333;
  padding-bottom: 0;
}

.contact-title h1 {
  font-size: 32px;
  font-weight: 600;
  line-height: 50px;
  color: #2e2e2e;
  text-align: center;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: auto;
  padding: 20px;
  max-width: 1200px;
  padding-top: 10px;
}

.contact-page-container .contact-info {
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #dbdbdb;
}

.contact-page-container .contact-info span,
.contact-page-container .contact-info i,
.contact-page-container .contact-info address {
  color: #000;
}

.contact-info .pink {
  color: rgb(190, 15, 82);
}

.contact-form {
  background: #fff;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #dbdbdb;
}

.contact-info,
.contact-form {
  flex: 1;
  margin: 16.5px;
  padding: 25px;
}
.contact-info ul {
  list-style: none;
  padding: 0;
}
.contact-info ul li {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  font-size: 18px; /* Larger font size */
}
.contact-info ul li i {
  margin-right: 10px;
  min-width: 30px; /* Larger icons */
  font-size: 18px; /* Larger icons */
  text-align: center;
}
.contact-info ul li span,
.contact-info ul li address {
  font-size: 16px; /* Larger text size */
  font-weight: 600;
  padding-left: 5px;
}
.contact-info ul li img {
  margin-right: 17px;
}
.contact-info ul li .fa-map-marker-alt {
  color: #ea4c89;
  font-size: 24px;
}
.contact-form h2 {
  margin-top: 0;
  margin-bottom: 24px;
}
.contact-form form {
  display: flex;
  flex-direction: column;
}
.contact-form input,
.contact-form textarea {
  margin-bottom: 15px;
  padding: 10px;
  padding-bottom: 9px;
  width: 100%;
  text-align: left;
  border: 1px solid #dbdbdb;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #d3d3d3;
  font-size: 14px;
  line-height: 17px;
  font-weight: 400;
  text-align: left;
}

.contact-form button {
  background: #ea4c89;
  width: 100%;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  line-height: 18px;
  padding: 11px 0;
  border-radius: 20px;
  border: none;
  margin-top: 10px;
}
.contact-form button:hover {
  cursor: pointer;
  background: #ba1e5a;
}
/* Responsive Design */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
  .contact-info,
  .contact-form {
    margin: 10px auto;
    width: 90%;
  }
  .contact-info ul li i,
  .contact-info ul li span,
  .contact-info ul li address,
  .contact-form input,
  .contact-form textarea,
  .contact-form button {
    font-size: 16px; /* Adjust font size for mobile */
  }
  .contact-info ul li i {
    font-size: 20px; /* Adjust icon size for mobile */
  }
}

.top-footer-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.top-footer-section .footer-logo img {
  filter: grayscale(100%);
}

.top-footer-section .footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  column-gap: 50px;
}

.top-footer-section .footer-nav ul li {
  list-style-type: none;
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  color: rgb(52, 52, 52);
}

.top-footer-section .footer-nav ul li:not(:first-child)::before {
  content: '';
  display: inline-block;
  position: relative;
  top: -3px;
  left: -25px;
  width: 4px;
  height: 4px;
  background: rgb(117, 117, 117);
  border-radius: 50%;
}

.top-footer-section .footer-nav ul li a,
.contact-info ul li a {
  text-decoration: none;
}

.bottom-footer-section {
  background-color: #f5f5f5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 20px;
}

.bottom-footer-section .copyright-text,
.bottom-footer-section .disclaimer-text {
  color: rgb(134, 134, 134);
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
}

@media screen and (max-width: 1024px) {
  .bottom-footer-section .disclaimer-text {
    width: 60%;
  }
}

@media screen and (max-width: 450px) {
  .top-footer-section {
    flex-direction: column;
    padding-bottom: 20px;
  }

  .top-footer-section .footer-nav ul {
    justify-content: center;
    column-gap: 25px;
  }

  .top-footer-section .footer-nav ul li:not(:first-child)::before {
    left: -12.5px;
  }

  .bottom-footer-section {
    flex-direction: column;
    padding: 20px 25px;
  }

  .copyright-text {
    order: 2;
  }

  .bottom-footer-section .disclaimer-text {
    order: 1;
    padding-bottom: 10px;
    width: 100%;
  }

  .top-footer-section .footer-logo img {
    filter: grayscale(100%);
  }

  header .login-btns .sign-in-btn {
    font-size: 14px;
    padding: 10px 15px 9px;
    background: #383636;
  }

  .contact-title h1 {
    font-size: 32px;
  }

  .contact-form h2 {
    font-size: 20px;
  }

  .contact-container {
    padding: 0;
    padding-bottom: 40px;
  }

  .contact-info,
  .contact-form {
    padding: 24px 20px;
  }

  .contact-info {
    padding-bottom: 0;
  }
}

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fafafa;
  text-align: center;
  padding: 20px;
  border-top: 1px solid rgb(219, 219, 219);
  z-index: 99;
}

#cookie-banner p {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: #2e2e2e;
}

#cookie-banner a {
  color: #ea4c89;
  text-decoration: none;
}

#cookie-banner .accept-essential {
  background-color: #d3d3d3;
  padding: 12px 24px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  border-radius: 24px;
  margin-top: 24px;
  margin-bottom: 5px;
  margin-right: 10px;
}

#cookie-banner .accept-essential:hover {
  background: #383636;
  color: #fff;
}

#cookie-banner .accept-all {
  background: #ea4c89;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  line-height: 18px;
  padding: 12px 24px;
  border-radius: 20px;
  border: none;
  margin-top: 24px;
  margin-bottom: 5px;
  margin-left: 10px;
}

#cookie-banner .accept-all:hover {
  cursor: pointer;
  background: #ba1e5a;
}

@media screen and (max-width: 393px) {
  #cookie-banner button {
    margin: 10px 0 0 !important;
  }
}

@media screen and (max-width: 375px) {
  #cookie-banner .accept-essential {
    margin-right: 0;
  }

  #cookie-banner .accept-all {
    margin-left: 0;
    margin-bottom: 0;
    margin-top: 16px;
  }
}
