*{
    margin: 0;
    padding: 0;
    font-family: var(--gchFont);
    box-sizing: border-box;
}

.pageContentBox{
    padding: 60px;
    display: flex;
    flex-direction: column;
}


/* Header Css */
header{
    position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: white;
}
.headerWhiteBox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px 5px 20px;
    box-sizing: border-box;
}
.headerLogoImg{
    width: 240px;
}
.headerLinksBox{
    display: flex;
    flex-direction: column;
    align-items: end;
}
.headerLinksBox-span-img{
    height: 40px;
}
.headerLinksBox-span{
    display: flex;
    align-items: center;
}
.headerBtn, .homeBanner a{
    height: 50px;
    width: 140px;
    background: linear-gradient(to right, var(--gchLiteBlue), var(--gchDarkBlue));
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    box-shadow: 0 4px 2px rgba(0, 0, 0, 0.1);
    margin: 0 0 0 15px;
}
.headerRightGroup {
    display: flex;
    align-items: center;
    gap: 10px;
}
.headerBlueBox{
    background-color: var(--gchDarkBlue);
    display: flex;
    justify-content: space-between;
    align-items: center;
      padding: 5px 20px 5px 20px;
    box-sizing: border-box;
}
.headerLinks {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}
.headerLinks:hover{
    font-weight: bold;
}
.headerLinksBox-blue{
    display: flex;
    gap: 25px;
    align-items: center;
}
.headerPromiLink{
    background-color: white;
    border-radius: 20px;
    padding: 7px 10px 7px 10px;
    color: var(--gchDarkBlue);
}
.shortScreenHeader-div{
    display: none;
    padding: 20px;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);

}
.shortScreenHeader-div-img{
    width: 250px;
}
.shortScreenHeader-div-hamburger{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 20px;
    border-radius: 20px;
    transition: 0.3s;
    background: linear-gradient(to right, var(--gchLiteBlue), var(--gchDarkBlue));
}
.hamburgerStrip{
    width: 20px; height: 3px;
    background-color: white;
}
.shortScreenHeader-div-hamburger:hover .hamburgerStrip{
    background-color: white;
}
.slideMenu {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background-color: white;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    padding: 40px 20px;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.3s ease-in-out;
    transform: translateX(100%);
    z-index: 1000;
    display: none; /* 🔹 start hidden */
}
.slideMenu.open {
    transform: translateX(0);
    display: flex; /* 🔹 show only when open */
}
.slideMenu a {
    text-decoration: none;
    color: var(--gchDarkBlue);
    font-weight: 500;
    font-size: 18px;
    transition: 0.3s;
}

.slideMenu a:hover {
    font-weight: bold;
}
.closeBtn {
    top: 15px;
    font-size: 30px;
    cursor: pointer;
    color: var(--gchDarkBlue);
}


/* Separator CSS */
.separatorBox{
    width: fit-content;
    display: flex;
    gap: 8px;
    margin: 15px 0 15px 0;
    align-items: center;
    justify-content: center;
}
.separatorBox span{
    height: 13px; width: 13px;
    background: linear-gradient(to right, var(--gchLiteBlue), var(--gchDarkBlue));
    border-radius: 20px;
}


main{
      margin: 130px 0 0 0;
}
/* Service Page CSS */
.pageIntroBanner {
    position: relative;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("/img/doctor_banner.png");
    background-position: center;
    background-size: auto;
    
}
.pageIntroBanner h1{
    color: white;
    font-size: 48px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    text-align: center;
    line-height: 50px;
}
.pageContentBox h2 {
    color: black;
    font-size: 35px;
    font-weight: bold;
}
.pageContentBox p ,.pageContentBox ul ,.pageContentBox ol{
    font-size: 16px;
    color: var(--gchTextGray);
    line-height: 27px;
}
.pageContentBox ul ,.pageContentBox ol{
    margin: 0 0 0 20px;
}








.footerLegalBox{
    color: white;
    display: flex;
    gap: 20px;
    line-height: 27px;
}






.sectionSelBox{
    width: fit-content;
    display: flex;
    gap: 10px;
    margin: auto;
    padding: 15px;
    border-radius: 22px;
    background-color: #f5f5f5;
}
.selBxBtn{
    padding: 10px 20px 10px 20px;
    border: none;
    border-radius: 22px;
    font-size: 18px;
    color: var(--gchTextGray);
    background: transparent;
}
.selBxBtn:hover{
    background: linear-gradient(to right, var(--gchLiteBlue), var(--gchDarkBlue));
    color: white;
}
.activeSelBtn{
    background: linear-gradient(to right, var(--gchLiteBlue), var(--gchDarkBlue));
    color: white;
}





form{
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: fit-content;
    margin: auto;
    align-items: center;
    justify-content: center;
}
.formInputs{
    height: 65px; 
    width: fit-content;
    background-color: #f5f5f5;
    padding: 15px;
    font-size: 18px;
    border: none;
    border-radius: 15px;
    outline: none;
}
.formTextArea{
    height: 200px;
}
.formBtns{
    height: 65px;
    width: 100px;
    background: linear-gradient(to right, var(--gchLiteBlue), var(--gchDarkBlue));
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 18px;
}
.filterBtn {
  height: 65px;
  background: linear-gradient(to right, var(--gchLiteBlue), var(--gchDarkBlue));
  text-decoration: none;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 15px;
  box-shadow: 0 4px 2px rgba(0, 0, 0, 0.1);
  margin: 0 0 0 15px;
  padding: 0 30px;
}


#form-pWU{
    display: none;
}






.faqBox{
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 80%;
    margin: auto;
}
.faqStrip{
    min-height: 70px;
    height: fit-content;
    border-radius: 12px;
    background-color: #f5f5f5;
    display: flex;
    box-shadow: 0 4px 2px rgba(0, 0, 0, 0.1);
    align-items: center;
}
.faqAnswer{
    height: fit-content;
    display: none;
    flex-direction: column;
}
.faqAnswer p{
    margin: 20px 0 0 0;
    color: var(--gchTextGray);
    line-height: 33px;
}


.faqAnswer ul, .faqAnswer ol{
    margin: 0 0 0 45px;
    line-height: 33px;
    color: var(--gchTextGray);
}

.faqStrip-textBx{
    height: 100%;
    width: calc(100% - 70px);
    display: flex;
    justify-content: center;
    padding: 10px;
    text-align: left;
    flex-direction: column;
    font-size: 18px;
}
.faqToggle {
    height: 40px;
    width: 40px;
    cursor: pointer;
    border: none;
    background-color: transparent;
    transition: background-color 0.3s ease;
}
.faqToggle:hover {
    scale: 1.1;
}
.faqStrip-button{
    width: 70px; height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: baseline;
}



#faqBx-cWA{
    display: none;
}

.footer-upper{
  display: flex;
  justify-content: space-between;
  padding: 60px 60px 20px 60px ;
  background-color: var(--gchDarkBlue);
}
.footer-lower{
    display: flex;
    justify-content: space-between;
    padding: 40px 0;
    background-color: var(--gchDarkBlue);
    padding: 0 60px 60px 60px;
}
.footerText{
    color: white;
    text-align: center;
}
.footer-column{
    color: white;
}

.footer-column img{
    margin: 0 0 15px 0;
}
.footer-column p, .footer-column a{
    line-height: 23px;
    text-decoration: none;
    color: white;
}
.footer-column h2{
    margin: 0 0 15px 0;
}
.footer-img{
    width: 200px;
    background-color: white;
    padding: 10px;
    border-radius: 28px;
}


.socMedBox{
    display: flex;
    gap: 10px;
    width: fit-content;
    margin: 20px auto 0 0;
}
.socMedAnchor{
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, var(--gchLiteBlue), var(--gchDarkBlue));
    text-decoration: none;
    color: white;
    margin: auto;
    font-size: 25px;
    border-radius: 50%;
}

/* Spacers CSS */
.spacer-60{
    height: 60px;
}
.spacer-30{
    height: 30px;
}
.spacer-20{
    height: 20px;
}
.spacer-10{
    height: 10px;
}



/* Header Responsiveness */
@media screen and (max-width: 1200px){
    .footerLegalBox{
        gap: 0px;
        line-height: 27px;
    }
    .footer-upper{
        flex-direction: column;
        align-items: start;
        padding: 60px 30px 0 30px;
    }
    .footer-lower{
        flex-direction: column;
        padding: 0 30px 60px 30px;
    }
    .footer-column{
        display: flex;
        flex-direction: column;
        align-items: start;
        margin: 0 0 20px 0;
    }
    .footer-column p, .footer-column a, .footerText{
        text-align: start;
    }
    .footerLegalBox{
        flex-direction: column;
        align-items: start;
        margin-top: 20px;
        line-height: 27px;

    }
}
@media screen and (max-width: 1089px){
    form, .faqBox{width: 80%;}
}
@media screen and (max-width: 810px){
    .wideScreenHeader{display: none;}
    .shortScreenHeader{display: block;}
    .shortScreenHeader-div{display: flex;}
    main{
          margin: 108px 0 0 0;
    }
}
@media screen and (max-width: 467px){
    .pageIntroBanner h1{
        font-size: 28px;
        line-height: 40px;
    }
    .pageContentBox h2{
        font-size: 25px;
    }
    .sectionSelBox{flex-direction: column;}
    .pageContentBox{
        padding: 20px;
    }
    .pageContentBox p, .pageContentBox ul, .pageContentBox ol, button{
        font-size: 17px; line-height: 27px;
    }
    .pageContentBox{
        align-items: center;
    }
    #location-name, #location-name-2{
        font-size: 10px !important;
    }
    .locAddress, .locCity{
        font-size: 10px !important;
    }
    .footer-img{
        width: 180px !important;
    }
}
@media screen and (max-width: 370px){
    .shortScreenHeader-div-img{width: 170px;}
    .shortScreenHeader-div{padding: 10px;}
    .shortScreenHeader-div-hamburger{
        padding: 10px;
        border-radius: 10px;
    }
}