html{
    font-size: 62.5%;
    background: linear-gradient(90deg, #f5f0d3 0%, #ddc1ad 40%, #ebbfaf 70%);
    scroll-behavior: smooth;
}

*{
    box-sizing: border-box;
    font-family: 'warbler-deck', sans-serif;
    font-weight: 500;
    margin: 0;
    padding: 0;
}
body{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.mobile-only img{
    display: none;
}

/* Header style*/
.header-container{
    display: flex;
    flex-direction: row;
    height: 50rem;
    width: 100%;
    aspect-ratio: 1920 / 600;
    text-align: center;
    padding: 2rem 1rem;
    border-bottom: 3px solid #5A4FCF;
    margin-bottom: 0;
    background: #b9a08d;
    background-image: url("../Images/Four_stylized_figurine.jpg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.banner{
    max-width: 30%;
    display: flex;
    flex: 0 0 15%;
    align-items: center;
    justify-content: center;
}
.banner img{
    width: 70%;
    height: auto;
    margin: 0;
}
#practice-name{
    display: flex;
    flex-direction: column;
    flex: 0 0 85%;
    width: 75%;
    margin: 0.8rem auto;
    margin-bottom: 2rem;
    padding: 2.4rem 0;
    color: #4d084d;
    text-align: center;
}
#practice-name h1{
    font-size: clamp(2rem, 5.1vw + 1rem, 8em);
    font-family: 'ogg', sans-serif;
    font-weight: 700;
    font-style: normal;
}
#practice-name p{
    font-size: clamp(0.5rem, 6vw - 1rem, 2.5rem);
    line-height: 1.2;
    font-family: "adobe-jenson-pro", sans-serif;
    font-weight: 600;
    font-style: normal;
    text-transform: uppercase;
    padding-bottom: 1.5rem;
}

/*Naviation style */
#nav-menu{
    background: linear-gradient(
        135deg, 
        rgba(255, 153, 182, 0.4),
        rgba(220, 151, 255, 0.4)
        );
    backdrop-filter: blur(1.2rem);
    -webkit-backdrop-filter: blur(1.2rem);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    margin: 2rem auto;
    max-width: 1200px;
    width: 90%;
    padding: 1rem 0;
}
#nav-menu ul{
    list-style: none;
    display: flex;
    justify-content: space-around;
    margin: 0;
    padding: 0;
}
#nav-menu a{
    padding: 1rem 1.5rem;
    text-decoration: none;
    color: #333;
    display: block;
    font-size: max(0.8em, 2em);
    border-radius: 8px;
    transition: background-color 0.3s ease;
}
#nav-menu a:hover{
    background-color: #720b72;
    color: white;
}

/* Dropdown Menu Styles */
.nav-dropdown{
    position: relative;
}
.nav-dropdown > a::after{
    content: " ▼";
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}
.nav-dropdown:hover > a::after,
.nav-dropdown:active > a::after{
    transform: rotate(180deg);
}
.dropdown-menu{
    display: flex;
    flex-direction: column;
    gap: 5px;
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(135deg, #ff99b6, #dc97ff);
    border-radius: 8px;
    min-width: 200px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:active .dropdown-menu{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu li{
    margin: 0;
    padding: 0;
}
.dropdown-menu a{
    display: block;
    padding: 0.8rem 1.5rem;
    color: #333;
    text-decoration: none;
    font-size: 1.6rem;
    border-radius: 0;
    transition: background-color 0.3s ease;
}
.dropdown-menu a:hover,
.dropdown-menu a:active{
    background-color: #720b72;
    color: white;
    border-radius: 0;
}

/*Index Body Style */
.button-container{
    display: flex;
    align-items: center;
    margin: 2rem 0;
    padding-left: 1rem;
}
.book_now{
    display: inline-block;
    background: linear-gradient(135deg, #af99af, #ff99b6);
    border-radius: 1.5rem;
    max-width: 100rem;
    border: 3px solid #5A4FCF;
    font-size: max(1.5rem, 2.2rem);
    font-weight: 500;
    text-align: center;
    margin: 2rem auto;
    padding: 1.2rem 2.4rem;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}
.book_now:hover{
    background: linear-gradient(135deg, #310055, #dc97ff);
    color: white;
    transition: all 0.1s ease;
    transform: translateY(-3px);
    box-shadow: 0 3px 6px rgb(78, 6, 78);
}
.book_now:active{
    cursor: pointer;
    scale: .90;
    transition: all 0.1s ease;
}
.welcome_container{
    display: flex;
    min-height: 80rem;
    max-width: 90%;
    flex-direction: column;
    margin: 3.5rem auto;
}
.about_us_text{
    max-width: 80%;
    margin: 1rem auto;
    margin-bottom: 2rem;
    padding: 2.7rem;
    color: #4d084d;
    text-align: center;
    border-radius: 18rem;
    background-color: rgba(255, 255, 255, 0.5);
    box-shadow: inset 0 0 100px rgba(255, 255, 255, 0.5);
}
.about_us_text h2{
    font-size: clamp(1.5rem, 2vw + 1rem, 5rem);
    font-family: 'warbler-banner', sans-serif;
    font-weight: 700;
    font-style: normal;
    border-bottom: 3px solid #5A4FCF;
}
.about_us_text p{
    text-align: center;
    font-size: clamp(0.4rem, 2vw + 1rem, 2.4rem);
    line-height: 1.2;
    font-weight: 500;
    font-style: normal;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 3rem;
}

/* Index Biography Section Style */
#bio-section {
    display: flex;
    flex-direction: column;
    align-items: center; 
    max-width: 90%;
    margin: 30px auto; 
    padding: 10px;
    background-color: #f7f7f7;
    border-radius: 3rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
#bio-section h2 {
    font-size: clamp(1.5rem, 2vw + 1rem, 5rem);
    color: #4d084d;
    margin-bottom: 1rem;
    text-align: center;
    font-family: 'warbler-banner', sans-serif;
    font-weight: 700;
    font-style: normal;
    border-bottom: 3px solid #5A4FCF;
}
#bio-content{
    display: flex;
    flex-direction: row;
}
#portrait {
    flex: 0 0 40%; 
    justify-content: center;
    margin-right: 10px;
}
#portrait img {
    width: 100%; 
    height: auto;
    border-radius: 1.5rem; 
    object-fit: cover;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
#biography-text {
    flex: 0 0 60%; 
}
#biography-text h3 {
    color: #4d084d;
    margin-top: 0;
    margin-bottom: 2rem;
    font-size: clamp(2.5rem, 2vw + 1rem, 4.5rem);
    text-align: center;
}
#biography-text h4 {
    color: #4d084d;
    margin-top: 0;
    margin-bottom: 2rem;
    padding: 1rem;
    font-size: clamp(1.5rem, 2vw + 1rem, 3rem);
    text-align: center;
}
#biography-text p {
    line-height: 1.6;
    font-size: clamp(1rem, 2vw + 1rem, 1.8rem);
    padding: 2rem;
    color: #4d084d;
}
.horizontal-moon {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 18rem;
    max-height: 10rem;
    margin-left: auto;
    margin-right: auto;
}
.horizontal-moon img {
    width: 60%;
    max-width: min(600px, 100%);
    height: auto;
    transform: rotate(90deg);
}
#queer-witchy-container {
  display: flex;
  align-items: stretch; 
  gap: 6rem;            
  width: 90%;
  margin: 2rem auto;
}
.rainbow-moon{
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rainbow-moon img{
    width: auto;
    height: 70%;
    object-fit: contain;
    margin: 2rem auto;
}
#queer-witchy-text{
    flex: 1;
    text-align: center;
    padding: 0 2rem;
}
#queer-witchy-text h4{
    color: #4d084d;
    margin-top: 0;
    margin-bottom: 2rem;
    padding: 1rem;
    font-size: clamp(1.5rem, 2vw + 1rem, 3rem);
    text-align: center;
}
#queer-witchy-text p{
    line-height: 1.6;
    font-size: clamp(.8rem, 2vw + 1rem, 1.8rem);
    padding: 2rem;
    color: #4d084d;
}
.lists-container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 2rem;
}
.lists-container ul{
    flex: 1;
    list-style: none;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.lists-container li{
    line-height: 1.8;
    font-size: clamp(1rem, 2vw + 1rem, 1.8rem);
    color: #4d084d;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}
.lists-container li:before{
    content: "✦";
    position: absolute;
    left: 0;
    color: #ff99b6;
    font-size: 1em;
}
.lists-container ul h5{
    font-weight: 700;
    font-size: clamp(1.4rem, 2vw + 0.5rem, 2rem);
    color: #5A4FCF;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #ff99b6;
    margin-top: 0;
}
#queer-witchy-text ul{
    line-height: 1.6;
    font-size: clamp(1rem, 2vw + 1rem, 1.8rem);
    padding: 2rem;
    color: #4d084d;

    list-style: none;
    margin: 1.5rem auto;
    max-width: 80%;
    text-align: left;
}
#queer-witchy-text li{
    font-size: clamp(0.8rem, 2vw + 1rem, 1.6rem);
    color: #4d084d;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
}
#queer-witchy-text li:before{
    content: "✦";
    position: absolute;
    left: 0;
    color: #5A4FCF;
    font-size: 1.2em;
}

/*Footer Style */
footer{
    margin-top: auto;
    background-color: #7e6d60;
    justify-content: flex-end;
    
}
.footer-content {
    max-width: 90%;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}
.footer-section {
    flex: 1;
    
}
.footer-section h3{
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color:white;
}
.footer-section p, .footer-section a{
    font-family: "adobe-jenson-pro", sans-serif;
}
.footer-right-container{
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
#psych-logo-container{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    gap: 2rem;
}
#footer-logo{
    width: 12rem;
    height: 12rem;
}

/* Quick Links Style */
.quick-links{
    list-style: none;
}
.quick-links li{
    margin-bottom: 1.2rem;
}
.quick-links a{
    text-decoration: none;
    color: white;
    font-size: 2rem;
    transition: color 0.3s;
}
.quick-links a:hover{
    color: #720b72;
}

/* Contact Info Style */
.contact-info p{
    font-size: 2rem;
    color: white;
    margin-bottom: 1.6rem;
    line-height: 1.6;
    text-align: left;
}
.contact-info a{
    text-decoration: none;
    color: white;
    transition: color 0.3s;
}
.contact-info a:hover{
    color: #720b72;
}

/* Copyright Style */
.copyright{
    padding: 2rem;
    font-size: 1.4rem;
    color: white;
    background: #816650;
    border-top: 1px solid #ccc;
    text-align: center;
}
.socials-container{
    display: flex;
    width: min(40rem, 95%);
    gap: min(.8rem,3rem);
}
.socials-container a{
    background-color: white;
    padding: min(.5em, 1em);
    border-radius: 50%;
    height: 6.4rem;
    width: 6.4rem;
    box-sizing: border-box;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}
.socials-container a svg{
    height: 3.2rem;
    fill: var(--accent-color);
}
.socials-container a::before{
    content: attr(data-social);
    font-size: 1.3rem;
    position:absolute;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    padding: 0.5em 1em;
    border-radius: 100px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
    transform: translateY(-25px) rotate(25deg);
    opacity: 0;
    transition: 250ms cubic-bezier(.42,0,.44,1.68);
}
.socials-container a::after{
    content: '';
    position: absolute;
    width: 0; 
    height: 0; 
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 10px solid var(--accent-color);
    transform: translateY(-10px) rotate(25deg);
    opacity: 0;
    transition: 250ms cubic-bezier(.42,0,.44,1.68);
}
.socials-container a:hover{
    background-color: var(--accent-color);
    transition: background-color 0.3s ease;
}
.socials-container a:hover svg{
    fill: white;
}
.socials-container a:hover::before{
    transform: translateY(-52px) rotate(0);
    opacity: 1;
}
.socials-container a:hover::after{
    transform: translateY(-38px) rotate(0);
    opacity: 1;
}

/* Contact Page Styles */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 40px 0;
}
.contact-container hr{
    border: none;
    border-top: 3px solid #5A4FCF;
    margin: 1rem auto;
    max-width: 600px;
}
.contact-container h2 {
    text-align: center;
    font-size: 3rem;
    color: #310055;
    margin-bottom: 1.5rem;
}
.contact-container p {
    font-size: 1.8rem;
    color: #000;
    line-height: 1.6;
    text-align: center;
}
#get-in-touch h1{
    font-size: clamp(2rem, 6vw + 1rem, 6rem);
    color: #310055;
    margin-bottom: 1rem;
    text-align: center;
}
#get-in-touch p{
    max-width: 40%;
    font-size: clamp(1.2rem, 4vw + 1rem, 2.4rem);
    margin: 0 auto;
    padding: max(1rem, 1vw);
    border-radius: 25rem;
    background-color: rgba(255, 255, 255, 0.4);
    box-shadow: inset 0 0 100px rgba(255, 255, 255, 0.3);
}
.method-card {
    background: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
}
.method-card h3 {
    color: #310055;
    font-size: clamp(2rem, 6vw + 1rem, 3rem);
    margin-bottom: 1rem;
    border-bottom: 2px solid #e1ec45b8;
    padding-bottom: 0.5rem;
    text-align: center;
}
.method-card p {
    color: #000;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: left;
    font-size: clamp(1.2rem, 4vw + 1rem, 2.4rem);
}
.method-card a {
    color: #5A4FCF;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    font-size: clamp(1.2rem, 4vw + 1rem, 2.4rem);
    transition: color 0.3s;
}
.method-card a:hover {
    color: #310055;
    text-decoration: underline;
}
.hipaa-notice {
    background: #f0f8ff;
    border-left: 6px solid #5A4FCF;
    padding: 25px;
    border-radius: 8px;
    margin: 40px 0;
    text-align: left;
}
.hipaa-notice h3 {
    color: #310055;
    font-size: clamp(2rem, 6vw + 1rem, 3rem);
    margin-bottom: 1rem;
    border-bottom: 2px solid #e1ec45b8;
    text-align: center;
}
.hipaa-notice p {
    color: #000;
    line-height: 1.8;
    text-align: center;
    font-size: clamp(1.2rem, 4vw + 1rem, 2.4rem);
}

/* ClientSecure Widget Styling */
#clientsecure-widget, #existing-client, #general-questions {
    margin: 2rem auto;
}
#committed{
    margin-top: 1rem;
    font-style: normal;
    text-align: center;
    font-size: clamp(1.5rem, 3vw + 1rem, 3rem);
    color: #000;
}

/* Services Page Style */
.services-container{
    margin-top: 1rem;
}
.services-container h1{
    font-size: clamp(2rem, 6vw + 1rem, 6rem);
    color: #310055;
    margin-bottom: 1rem;
    text-align: center;
}
.services-container hr{
    border: none;
    border-top: 3px solid #5A4FCF;
    margin: 1rem auto;
    max-width: 600px;
}
.modality-define{
    width: min(1800px, 90%);
    margin: 20px auto;
    font-size: clamp(0.8rem, 4vw, 1.8rem);
    line-height: 1.4;
    color: #000;
    text-align: center;
}
.modality-define h2{
    font-size: clamp(1.2rem, 5vw + 1rem, 4rem);
    color: #310055;
    margin-bottom: 1rem;
}
.modality-type-header{
    width: min(1800px, 90%);
    margin: 20px auto;
    font-size: clamp(0.8rem, 4vw, 1.8rem);
    line-height: 1.4;
    color: #000;
    text-align: center;
}
.modality-type-header h2{
    font-size: clamp(1.2rem, 5vw + 1rem, 4rem);
    color: #310055;
    margin-bottom: 1rem;
}
.modality-type-header h3{
    font-size: clamp(1rem, 4vw + 1rem, 3rem);
    color: #310055;
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.modality-type-header hr{
    border: none;
    border-top: 3px solid #5A4FCF;
    margin: 1rem auto;
    max-width: 600px;
}
.bold-font{
    font-weight: 700;
}

/* Services page Services Offered Style */
.services-available{
    max-width: 1800px;
    margin: 20px auto;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius:8rem;
    background-color: rgba(255, 255, 255, 0.4);
    box-shadow: inset 0 0 100px rgba(255, 255, 255, 0.3);
}
.services-available hr{
    border: none;
    border-top: 3px solid #5A4FCF;
    margin: 1.5rem auto;
    margin-bottom: 2rem;
    max-width: 600px;
    width: 80%;
    opacity: 1;
}
.services-available h2{
    font-size: 3.5rem;
    color: #310055;
    backdrop-filter: blur(10px);
}
.services-avail-container{
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}
.services-avail-container h3{
    font-size: 3rem;
    color: #310055;
    margin-bottom: 1rem;
    border-bottom: solid 1px #5A4FCF;
}
.services-card{
    background: linear-gradient(135deg, #af99af, #ff99b6);
    border-radius: 15px;
    padding: 20px;
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.services-card p{
    font-size: 1.4rem;
    color: #000;
    line-height: 1.6;
}
.services-card table{
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    text-align: left;
}
.services-card td{
    font-size: 1.6rem;
    padding-right: 1.5rem;
    padding-bottom: 1rem;
}
#specialties p{ 
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}
#specialties ul{
    list-style: circle;
    list-style-position: inside;
    padding: 0;
}
#specialties li{
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    text-align: left;
}
#allied-communities p{ 
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}
#allied-communities ul{
    list-style: circle;
    list-style-position: inside;
    padding: 0;
}
#allied-communities li{
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    text-align: left;
}
#experience-section{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
}
#experience-head h2{
    font-size: 4.5rem;
    color: #310055;
    margin-bottom: 1rem;
    border-bottom: solid 1px #5A4FCF;
    text-align: center;
}
#experience-head{
    font-size: 1.8rem;
    color: #310055;
    margin-top: 2rem;
    text-align: center;
}
.experience-list-container{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
}
.experience-list{
    flex: 1;
    min-width: 25rem;
}
.experience-list ul{
    list-style: circle;
    list-style-position: inside;
    padding: 0;
}
.experience-list li{
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    text-align: left;
}

/* Insurances Section Style */
.insurances-taken{
    max-width: 1800px;
    margin: 60px auto;
    padding: 2rem;;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 5rem;
    background-color: rgba(255, 255, 255, 0.4);
    box-shadow: inset 0 0 100px rgba(255, 255, 255, 0.3);
}
.insurances-taken h2{
    font-size: 2.5rem;
    color: #310055;
    margin-bottom: 1rem;
    text-align: center;
}
.insurances-taken hr{
    border: none;
    border-top: 3px solid #5A4FCF;
    margin: 1.5rem auto 2rem;
    max-width: 600px;
    width: 80%;
    opacity: 1;
}
.insurances-container{
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}
.insurance-card{
    display: flex;
    flex-wrap: wrap;
    border: 2px solid #5A4FCF;
    border-radius: 2rem;
    padding: 30px;
    flex: 1;
    width: 100px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
.insurance-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
.card-title{
    font-size: max(2.6rem, 1.6rem);
    padding: 0 15px;
    background-color: rgba(255, 153, 182, 0);
    color: #310055;
    margin-bottom: 1.5rem;
    font-weight: 700;
}
.card-content{
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}
.card-content ul{
    list-style: disc;
    padding: 0;
    margin: 0;
}
.card-content li{
    font-size: max(1.8rem, 1.2rem);
    color: #333;
    margin-bottom: 0.8rem;
    text-align: left;
}
.insurance-card h3{
    font-size: max(3.2rem, 1.8rem);
    color: #333;
    margin: 0;
    transition: color 0.3s ease;
}
.insurance-card:hover h3{
    color: #5A4FCF;
}

/* --- 4. Responsive Adjustments --- */
@media (min-width: 1040px) and (max-width: 1655px) {
    #practice-name {gap: 6rem;
    }
}
@media (min-width: 768px) and (max-width: 1040px) {
    #practice-name {gap: 5.4rem;}
}
@media (min-width: 500px) and (max-width: 768px) {
    #practice-name {gap: 4rem;}
}
@media (max-width: 900px) {
    .desktop-only img{
        display: none;
        overflow: hidden;
        width: 0;
        height: 0;
        margin: 0;
        padding: 0;
    }
    .mobile-only img{
        display: block;
    }
    .footer-content {
        flex-direction: column;
        gap: 3rem;
    }
}
@media (max-width: 768px) {
    .header-container{
        flex-direction: column;
        align-items: center;
        padding: 1.5rem 1rem;
        background-image: url("../Images/Four_stylized_figurine_small.jpg");
    }
    .banner{
        display: none;
    }
    #practice-name{
        margin: 0;
        padding: 0;
        gap: 10rem;
    }
    
    .welcome_container{
        background-position: top center;
    }
    
    #bio-section, #nav-menu ul, .contact-methods, #bio-content {
        flex-direction: column; /* Stacks the items vertically on small screens */
    }
    
    #portrait, #biography-text {
        /* Both elements take up full width (100%) when stacked */
        flex: 0 0 100%; 
        padding-right: 0;
        text-align: left;
    }
    #portrait {
        margin-bottom: 2rem; /* Space between image and text when stacked */
        padding-bottom: 1rem;
        border-bottom: 1px solid #ddd;
    }
    
    .horizontal-moon{
        max-width: 12rem;
        margin: 1rem auto;
    }
    #queer-witchy-section{
        flex-direction: column;
        align-items: center;
        padding-left: 0;
        padding-right: 0;
    }
    #queer-witchy-container{
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 1rem 0;
    }
    #queer-witchy-text{
        padding: 0;
        width: stretch;
    }
    .lists-container{
        flex-direction: column;
    }
    
    
    .socials-container a{
        height: 5.6rem;
        width: 5.6rem;
    }
    .socials-container a svg{
        height: 2.8rem;
    }
    #biography-text p{
        font-size: 1.8rem;
    }
    #get-in-touch p{
        max-width: 90%;
    }
}
@media (max-width: 500px) {
    #practice-name {gap: 8rem;}
}

/* Document Page Styles */
.document-container {
    max-width: 90%;
    margin: 3rem auto;
    padding: 0 2rem;
}
.document-container h1 {
    font-family: "Playfair Display", serif;
    font-size: 3.5rem;
    color: #112A46;
    margin-bottom: 1rem;
    text-align: center;
}
.document-container hr {
    border: none;
    border-top: 3px solid #5A4FCF;
    margin: 2rem 0 3rem;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}
.updated-date {
    font-size: clamp(1.4rem, 2vw + 1rem, 2.6rem);
    color: #310055;
    text-align: center;
    margin-bottom: 3rem;
}
.document-content {
    padding: 2rem;
    font-size: 1.6rem;
    line-height: 1.8;
    color: #333;
    border-radius: 2rem;
    background-color: rgba(255, 255, 255, 0.4);
    box-shadow: inset 0 0 100px rgba(255, 255, 255, 0.3);
}
.document-content h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.4rem, 2vw + 1rem, 3.6rem);
    color: #5A4FCF;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #ff99b6;
    padding-bottom: 0.5rem;
}
.document-content h3 {
    font-size: clamp(1.9rem, 2vw + 1rem, 2.6rem);
    color: #5A4FCF;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}
.document-content h4 {
    font-size: 1.7rem;
    color: #5A4FCF;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}
#important-notice{
    font-size: clamp(1.6rem, 2vw + 1rem, 2.6rem);
    color: #cf3833;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
}
.document-content ul, 
.document-content ol {
    margin: 1.5rem 0 1.5rem 2rem;
}
.document-content li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}
.document-content p {
    margin: 1.2rem 0;
    text-align: justify;
}
.alert-box {
    background: linear-gradient(135deg, rgba(175, 153, 175, 0.1), rgba(255, 153, 182, 0.1));
    border-left: 5px solid #5A4FCF;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 8px;
    font-size: clamp(1.8rem, 2vw + 1rem, 2.6rem);
    font-family: "adobe-jenson-pro", sans-serif;
}
.alert-box ul {
    margin: 1rem 0 0 2rem;
}
.alert-box li {
    font-family: "adobe-jenson-pro", sans-serif;
}
.alert-box h3 {
    color: #5A4FCF;
    margin-top: 0;
    margin-bottom: 1.5rem;
    border-bottom: none;
    padding-bottom: 0;
}

/* FAQ Page Styles */
.questions-container {
    max-width: 90%;
    margin: 3rem auto;
    padding: 0 2rem;
    display: flex;
    justify-content: flex-start;
    align-items: left;
    gap: 0.5rem;
    flex-direction: column;
}
.questions-container h2 {
    font-family: "Playfair Display", serif;
    font-size: 4.5rem;
    color: #112A46;
    margin-bottom: 1rem;
    text-align: center;
}
.questions-container h3 {
    font-size: 2.5rem;
    color: #112A46;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #ff99b6;
    padding-bottom: 0.5rem;
    text-align: center;
}
.faq-item {
  background-color: rgba(243, 229, 245, 0.5); /* Light purple to match your theme */
  font-size: max(2.4rem, 1.8rem);
  margin-bottom: 1rem;
  border-radius: 0.8rem;
  padding: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.faq-item summary::after {
  content: "▼";
  font-size: 1.2em;
  margin-left: 1.5rem;
  transition: transform 0.3s ease;
}
.faq-item summary {
  font-weight: bold;
  outline: none;
  list-style: none; /* Removes the default arrow if you want to customize it */
}

/* Style for when the dropdown is open */
.faq-item[open] {
  background-color: rgba(225, 190, 231, 0.6);
}

.faq-answer {
  padding-top: 2rem;
  font-size: max(2rem, 1.2rem);
  color: #4b0342;
}