/* Import Coustard font */
@import url('https://fonts.googleapis.com/css2?family=Coustard:wght@400;900&display=swap');
/* Import Noto Sans font */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;500;700&display=swap');

/* CSS Variables */
:root {
    --max-width: 1250px;
}

@media (max-width: 1250px) {
    :root {
        --max-width: 96%;
    }
}

@media (min-width: 2101px) {
    :root {
        --max-width: 1400px;
    }
}


/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

h1 {
    font-size: 3.5rem;
    font-weight: 400;
    margin: 0;
    padding: 0;
}

.container {
    width: 98%;
    margin: 0 auto;
}

/* Header and Navigation */
header {
    background-color: #fcfdf8;
    color: black;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    overflow: visible;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    margin-left: 180px;
    margin-right: 20px;
}

.logo {
    z-index: 1000;
    position: absolute;
    top: 20px;
    left: 40px;
}

.logo a {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-4px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-4px, -6px);
}

.logo-circle {
    width: 120px;
    height: 120px;
    background-color: #2a475a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.logo-circle h1 {
    font-family: 'Coustard', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: #7e9e73;
    margin: 0;
    margin-top: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.logo-circle span {
    font-family: 'Coustard', serif;
    font-size: 90px;
    font-weight: 300;
    color: #7e9e73;
    margin: 0;
    margin-top: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2px;
    margin: 0;
}

.nav-menu a {
    color: black;
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    transition: background-color 0.4s ease;
    white-space: nowrap;
    text-align: center;
    display: inline-block;
}

.nav-menu a:hover,
.nav-menu a.active {
    background-color: #F6F7F2;
    color: #0b1217;
}

.cta-button {
    margin-left: auto;
}

.consultation-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #578151;
    color: #FFF;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 13px;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    transition: all 0.4s ease;
    border: 1px solid #4a6b3f;
    white-space: nowrap;
    text-align: center;
    border: solid 1px #444;
    box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.2);
}

.consultation-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

/* Main content */
main {
    min-height: calc(100vh - 200px);
}

.hero {
    position: relative;
    padding: 16rem 0;
    text-align: left;
    border-bottom-left-radius: 100px;
    border-bottom-right-radius: 100px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.services-page .hero-image {
    object-position: top;
}

#homepage .hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* Services page hero with different image */
.services-page .hero {
    padding: 16rem 0;
    position: relative;
    overflow: hidden;
}

.services-page .hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.15);
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 3;
    width: 98%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 6rem;
}

.hero h1 {
    font-family: 'Coustard', serif;
    font-size: 3.75rem;
    margin-bottom: 1rem;
    font-weight: 300;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-subheading {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 3rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    opacity: 0.95;
}

.services-page .hero .container {
    width: 98%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 6rem;
}

.services-page .hero h1 {
    font-family: 'Coustard', serif;
    font-size: 3.5rem;
    margin-bottom: 0;
    font-weight: 300;
    color: #2a475a;
}

.services-page .hero h2 {
    color: #0b1217;
    font-size: 3rem;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    padding-bottom: 20px;
}

.services-page .hero p {
    color: #0b1217;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-family: 'Noto Sans', sans-serif;
}

.service-link {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background: #f4f7e9;
    color: #0b1217;
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 300;
    font-size: 1.3rem;
    transition: all 0.4s ease;
    box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 350px;
    border: 1px solid #0b1217;
}

.service-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.arrow {
    font-size: 1.3rem;
    font-weight: bold;
}

#start-feeling-more-like-your-best-self h2 {
    font-family: 'Coustard', serif;
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 300;
    color: #0b1217;
    text-align: left;
}



#start-feeling-more-like-your-best-self p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #0b1217;
    margin-left: 0;
    margin-right: auto;
    text-align: left;
}

#start-feeling-more-like-your-best-self .container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 98%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 6rem;
}



#start-feeling-more-like-your-best-self .button-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 2rem;
    gap: 1rem;
}

.what-to-expect-link,
.rates-link {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background: #f4f7e9;
    color: #333;
    text-decoration: none;
    padding: 1rem 3rem;
    border-radius: 13px;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 300;
    font-size: 1.3rem;
    transition: all 0.4s ease;
    border: 1px solid black;
    white-space: nowrap;
    text-align: center;
    box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 450px;
}

.what-to-expect-link:hover,
.rates-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* About John Section */
.about-john-section {
    padding: 0;
    width: 100%;
    margin: 0 auto 50px auto;
}

.about-john-content {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
    border-radius: 100px;
    background-color: #2a475a;
    padding: 3rem 6rem;
}



.about-john-image {
    flex: 0 0 400px;
    height: 100%;
    min-height: 400px;
}

.about-john-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 100px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.about-john-text {
    flex: 1;
}

.about-john-text h2 {
    font-family: 'Coustard', serif;
    font-size: 3rem;
    font-weight: 300;
    color: #fcfdf8;
    margin-bottom: 0.5rem;
}

.about-john-text h3 {
    font-size: 2.2rem;
    color: #7e9e73;
    margin-bottom: 2rem;
    font-weight: 500;
}

.about-john-text p {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #fcfdf8;
    margin-bottom: 1.5rem;
}

.about-john-cta {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background: #f4f7e9;
    color: #333;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 13px;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 300;
    font-size: 1.3rem;
    transition: all 0.4s ease;
    margin-top: 1rem;
    border: 1px solid black;
    white-space: nowrap;
    text-align: center;
    box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 350px;
}

.about-john-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

/* Consultation Section */
.consultation-container {
    width: 98%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 50px;
    border: 1px solid #000;
    border-radius: 100px;
    background-color: #f4f7e9;
}

.consultation-container--contact {
    max-width: var(--max-width);
    padding: 3rem 6rem;
    border-radius: 50px;
    background-color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.consultation-container--out-of-network {
    max-width: var(--max-width);
}

.consultation-section {
    padding: 4rem 0;
    padding-bottom: 6rem;
    margin-bottom: 2rem;
    text-align: center;
}

.consultation-section .container {
    width: 98%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 50px;
    border: 1px solid #000;
    border-radius: 100px;
    background-color: #f4f7e9;
}

.consultation-section h2 {
    font-family: 'Coustard', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: #2a475a;
    margin-bottom: 0.75rem;
}

.consultation-section p {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.2rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 3rem;
    margin-left: auto;
    margin-right: auto;
}

.consultation-cta {
    width: 100%;
    max-width: 350px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: #628855;
    color: #FFF;
    text-decoration: none;
    padding: 1rem 3rem;
    border-radius: 13px;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 300;
    font-size: 1.3rem;
    transition: all 0.4s ease;
    white-space: nowrap;
    text-align: center;
    border: solid 1px #444;
    box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.2);
}

.consultation-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.consultation-cta svg {
    flex-shrink: 0;
    min-width: 24px;
}

/* Services Page Styles */

/* Sound Like You Section - matches John Monopoli section style */
.sound-like-you-section {
    padding: 3rem 0;
    margin-bottom: 2rem;
}

.sound-like-you-section .container {
    width: 98%;
    max-width: var(--max-width);
    margin: 0 auto;
    border-radius: 50px;
    background-color: #2a475a;
    padding: 8rem;
}



.common-concerns-section .container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
}

#how-well-work-together .container {
    width: 98%;
    max-width: var(--max-width);
    margin: 0 auto;
    border: 1px solid #628855;
    border-radius: 50px;
    padding: 8rem;    
    background: linear-gradient(135deg, #f4f7e9 0%, #fcfff1 100%);  
    box-shadow: 0 6px 20px rgba(131, 160, 179, 0.15);
}


.learn-more-section .container {
    width: 98%;
    max-width: var(--max-width);
    margin: 0 auto;
}





.sound-like-you-text h2 {
    font-family: 'Coustard', serif;
    font-size: 3rem;
    font-weight: 300;
    color: #fcfdf8;
    margin-bottom: 2rem;
    text-align: center;
}

.sound-like-you-text p {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.15rem;
    line-height: 2;
    color: #fcfdf8;
    max-width: 1000px;
    margin: 0 auto;
    margin-bottom: 1.5rem;
}

/* Common Concerns Section */
.common-concerns-section {
    width: 98%;
    margin: auto;
}

.concerns-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    width: 100%;
    margin: 0 auto;
}



.concerns-image {
    flex: 0 0 400px;
}

.concerns-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 50px;
}

.concerns-list {
    flex: 1;
}

.concerns-list h2 {
    font-family: 'Coustard', serif;
    font-size: 3rem;
    font-weight: 400;
    color: #628855;
    margin-bottom: 0;
    line-height: 1.2;
}

.concern-item {
    padding: 1rem 0;
    border-bottom: 1px solid #0b1217;
}

.concern-item:last-child {
    border-bottom: none;
}

.concern-item h3 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.7rem;
    font-weight: 500;
    color: #0b1217;
    position: relative;
}

.concern-item p {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #0b1217;
    margin: 0;
}

/* How We'll Work Together Section - matches Start Feeling More Like Your Best Self */
#how-well-work-together {
    padding: 6rem 0;
    margin-bottom: 2rem;
}

#how-well-work-together h2 {
    font-family: 'Coustard', serif;
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 300;
    color: #0b1217;
    text-align: center;
    width: 100%;
}

#how-well-work-together h2 .highlight {
    background-color: #83a0b3;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    transition: all 0.4s ease;
    display: inline-block;
    transform-origin: center;
}

#how-well-work-together p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #0b1217;
    margin-left: 0;
    margin-right: auto;
    text-align: left;
}

#how-well-work-together .container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: var(--max-width);
    margin: 0 auto;
}

/* Learn More Section */
.learn-more-section {
    padding: 4rem 0;
    margin-bottom: 2rem;
}

.learn-more-section h2 {
    font-family: 'Coustard', serif;
    font-size: 3rem;
    font-weight: 300;
    color: #2a475a;
    margin-bottom: 1rem;
}

.learn-more-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    width: 100%;
    margin: 0 auto;
}

.learn-more-card {
    background: white;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    min-width: 0;
}

.learn-more-card:hover {
    transform: translateY(-5px);
}


.learn-more-card:hover .card-image img {
    transform: translateY(-5px);
}

.learn-more-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* About John Intro Section */
.about-john-intro {
    padding: 6rem 0;
    margin-bottom: 2rem;
}

.about-john-intro-content {
    display: flex;
    align-items: stretch;
    gap: 2rem;
    width: 98%;
    max-width: var(--max-width);
    margin: 0 auto;
}

.about-john-intro-image {
    flex: 0 0 50%;
    display: flex;
}

.about-john-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50px;
}

.about-john-intro-text {
    flex: 1;
}

.about-john-intro h1 {
    font-family: 'Coustard', serif;
    font-size: 3rem;
    margin-bottom: 3rem;
    font-weight: 300;
    color: #0b1217;
    width: 100%;
    text-align: left;
}



.about-john-intro-text p {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.1rem;
    line-height: 1.5;
    color: #333;
    margin-bottom: 1.5rem;
}

.about-john-intro-text p:last-child {
    margin-bottom: 0;
}

.about-john-intro-text ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.about-john-intro-text li {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.1rem;
    line-height: 1.3;
    color: #333;
    margin-bottom: 0.5rem;
}

/* John's Background Section */
.johns-background-section {
    padding: 0;
    background-color: white;
    color: black;
}

.background-content {
    display: flex;
    justify-content: center;
    width: 98%;
    max-width: var(--max-width);
    margin: 0 auto;
}

.background-list {
    width: 100%;
}

.background-list h2 {
    font-family: 'Coustard', serif;
    font-size: 3rem;
    font-weight: 300;
    color: black;
    margin-bottom: 1rem;
    border-bottom: 1.5px solid #0b1217FF;
    padding: 0 20px;
}

.background-item {
    margin-bottom: 2rem;
    padding: 0 20px;
}

.background-item:last-child {
    margin-bottom: 0;
}

.background-item h3 {
    font-family: 'Coustard', serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: black;
    margin-bottom: 0.5rem;
}

.background-item p {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: black;
    margin: 0;
}

.background-item ul {
    margin: 0;
    padding-left: 1.5rem;
}

.background-item li {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: black;
    margin-bottom: 0.5rem;
}

.background-item {
    border-bottom: 1.5px solid black;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.background-item:last-child {
    margin-bottom: 0;
}

/* Personal Section */
.personal-section {
    padding: 6rem 0;
    padding-bottom: 3rem;
    margin-bottom: 2rem;
    background-color: white;
}

.personal-section h2 {
    font-family: 'Coustard', serif;
    font-size: 3rem;
    font-weight: 300;
    color: white;
    margin-bottom: 0;
    padding: 0;
    text-align: left;
    width: 98%;
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
}

.personal-content {
    display: flex;
    align-items: stretch;
    gap: 3rem;
    width: 98%;
    max-width: var(--max-width);
    margin: 0 auto;
}



.personal-image {
    flex: 0 0 50%;
}

.personal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
    border-radius: 50px;
}

.personal-image {
    flex: 0 0 49%;
    display: flex;
    align-items: stretch;
}

.personal-image:hover img {
    filter: grayscale(0%);
}

.personal-text {
    flex: 1 1 50%;
    background-color: #2a475a;
    border-radius: 50px;
    padding: 2rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.personal-text p {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.25rem;
    line-height: 1.4;
    color: white;
    margin-top: 10px;
    font-weight: 300;
}

.personal-text p:last-child {
    margin-bottom: 0;
}

.personal-text h2 {
    padding: 0;
    line-height: 1;
    margin: 0;
    text-align: center;
}

/* What to Expect Hero Section */
.what-to-expect-hero {
    padding: 3rem 0;   
    margin-bottom: 2rem;
    background-color: white;
    width: 100%;
}

.what-to-expect-hero .container {
    display: block;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    max-width: none;
}

.what-to-expect-hero-content {
    display: flex;
    align-items: center;
    gap: 0;
    width: 100%;
    margin: 0 auto;
}



.what-to-expect-hero-text {
    flex: 0 0 50%;
    padding: 0 6rem;
}

.what-to-expect-hero-text h1 {
    font-family: 'Coustard', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: #0b1217;
    margin-bottom: 2rem;
    line-height: 1.6;
}



.what-to-expect-hero-text p {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 2rem;
}

.what-to-expect-hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background: #628855;
    color: #FFF;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 13px;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 300;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    border: 1px solid #628855;
    white-space: nowrap;
    text-align: center;
    box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 350px;
    gap: 0.5rem;
}

.what-to-expect-hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.what-to-expect-hero-cta svg {
    flex-shrink: 0;
    min-width: 24px;
}

.what-to-expect-hero-image {
    flex: 0 0 50%;
}

.what-to-expect-hero-image img {
    width: 100%;
    height: 750px;
    object-fit: cover;
    border-radius: 100px 0 0 100px;
}

/* Teletherapy Section */
.teletherapy-section {
    padding: 6rem 0;
    background: #f4f7e9FF;
    border-radius: 75px;
    border: 1px solid black;
    margin-bottom: 100px;
}

.teletherapy-section h2 {
    font-family: 'Coustard', serif;
    font-size: 3rem;
    font-weight: 300;
    color: #0b1217;
    margin-bottom: 2rem;
    text-align: center;
}

.teletherapy-section > .container > p {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.2rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 4rem;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.teletherapy-subsections {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 98%;
    max-width: 1200px;
    margin: 0 auto;
}



.teletherapy-subsection {
    background: white;
    padding: 4rem 6rem;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.teletherapy-subsection-quiet {
    padding: 0rem 6rem 50px 6rem;
    border-radius: 20px;
    background: inherit;
    max-width: 1200px;
    margin: 0 auto;
}

.teletherapy-subsection-quiet h3 {
    font-family: 'Coustard', serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: #2a475a;
}

.teletherapy-subsection-quiet p {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

.teletherapy-subsection:nth-child(1),
.teletherapy-subsection:nth-child(3) {
    background: #7e9e73FF;
}

#teletherapy-subsection-1 {
    background: inherit;
    box-shadow: none;
    border: none;
}

.teletherapy-subsection:nth-child(2) {
    background: #2a465aFF;
}

.teletherapy-subsection h3 {
    font-family: 'Coustard', serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: #2a475a;
}

.teletherapy-subsection:nth-child(1) h3,
.teletherapy-subsection:nth-child(3) h3 {
    color: black;
}

.teletherapy-subsection:nth-child(2) h3 {
    color: white;
}

.teletherapy-subsection p {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

.teletherapy-subsection:nth-child(1) p,
.teletherapy-subsection:nth-child(3) p {
    color: black;
}

.teletherapy-subsection:nth-child(2) p {
    color: white;
}



.card-image {
    width: 100%;
    aspect-ratio: 1;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    object-position: top;
    border-radius: 50px;
}

.card-image img:hover {
    transform: scale(1.02);
}

.card-content {
    padding: 2rem;
    text-align: left;
}

.card-content h3 {
    font-family: 'Coustard', serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: #2a475a;
    margin-bottom: 1.5rem;
}

.card-cta {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background: #f4f7e9;
    color: #333;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 13px;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 300;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 1px solid black;
    white-space: nowrap;
    text-align: center;
    box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.2);
    width: 100%;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    gap: 0.5rem;
}

.card-cta svg {
    flex-shrink: 0;
    min-width: 24px;
}

.card-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

/* Insurance Section */
.insurance-section {
    margin-bottom: 2rem;
}

.insurance-section .container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.insurance-section h2 {
    font-family: 'Coustard', serif;
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 300;
    color: #333;
    text-align: left;
}



.insurance-section p {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    line-height: 1.7;
    color: #333;
}

.insurance-cta {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background: #f4f7e9;
    color: #333;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 13px;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 300;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 1px solid black;
    white-space: nowrap;
    text-align: center;
    box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.2);
    margin-top: 1rem;
    gap: 0.5rem;
}

.insurance-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.insurance-cta svg {
    flex-shrink: 0;
    min-width: 24px;
}

/* States Section */
.states-section {
    padding: 6rem 0;
    margin-bottom: 2rem;
}

.states-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    width: 98%;
    max-width: 1400px;
    margin: 0 auto;
}

.states-text {
    flex: 1;
}

.states-text h2 {
    font-family: 'Coustard', serif;
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 300;
    color: #7e9e73;
}

.states-image {
    flex: 1;
}

.states-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 50px;
}

/* Licenses Section */
.licenses-section {
    padding: 6rem 0;
    width: 98%;
    max-width: var(--max-width);
    margin: 0 auto;
}

.licenses-section h2 {
    font-family: 'Coustard', serif;
    font-size: 3rem;
    margin-bottom: 0;
    font-weight: 300;
    color: #7e9e73;
}

.licenses-content {
    width: 98%;
    max-width: var(--max-width);
    margin: 0 auto;
}

.license-item {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
}

.license-item h3 {
    font-family: 'Coustard', serif;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
    color: #2a475a;
}

.license-item p {
    font-size: 1.1rem;
    color: #333;
    margin-top: 1rem;
}

.license-item ul {
    list-style: none;
    display: grid;
    grid-template-rows: repeat(11, auto);
    grid-auto-flow: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.license-item li {
    font-size: 1.2rem;
    color: #333;
    padding: 0.5rem 0;
}

.license-item li:last-child {
    border-bottom: none;
}

/* Rates Section */
.rates-section {
    position: relative;
    padding: 6rem 0;
    margin-bottom: 6rem;
}

.rates-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.rates-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.rates-content {
    position: relative;
    z-index: 3;
    max-width: var(--max-width);
    margin: 0 auto;
    border-radius: 50px;
    background-color: #2a475a;
    padding: 6rem;
}



.rates-text h1 {
    font-family: 'Coustard', serif;
    font-size: 3rem;
    font-weight: 300;
    color: #fcfdf8;
    margin-bottom: 1rem;
    text-align: center;
}

.rates-text p {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.15rem;
    line-height: 2;
    color: #fcfdf8;
    margin-bottom: 1.5rem;
}

.rates-text-cost {
    text-align: center;
    font-size: 1.7rem !important;
}

.rates-text-note {
    text-align: center;
    font-size: 1.2rem !important;
}

/* Out of Network Page Styles */
.out-of-network-intro {
    padding: 6rem 0;
    margin-bottom: 2rem;
    background: #f4f7e9FF;
}

.out-of-network-intro .container {
    width: 90%;
    max-width: 1050px;
    margin: 0 auto;
    padding: 3rem 0;
    display: block;
}

.out-of-network-intro h1 {
    font-family: 'Coustard', serif;
    font-size: 3.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
    color: #2a475a;
    text-align: left;
}

.out-of-network-intro p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #333;
}

.pros-section {
    padding: 6rem 3rem;
    margin-bottom: 2rem;
}

.pros-section h2 {
    font-family: 'Coustard', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 300;
    color: #333;
    text-align: center;
}

.pros-content {
    width: 98%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    padding: 3rem;
}

.pro-item {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    padding: 6rem;
    background: rgb(42, 71, 90);
    border-radius: 20px;
    border: 1px solid #ddd;
}



.pro-item h3 {
    font-family: 'Coustard', serif;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 400;
    color: #fcfdf8;
    line-height: 1.2;
    text-align: left;
}

.pro-item p {
    font-size: 1.1rem;
    line-height: 2;
    color: #fcfdf8;
    margin-top: 0;
}

.cons-section {
    padding: 6rem 3rem;
    background-color: #f5f6f7;
    margin-bottom: 4rem;
}

.cons-section h2 {
    font-family: 'Coustard', serif;
    font-size: 3rem;
    margin-bottom: 4rem;
    font-weight: 300;
    color: #333;
    text-align: center;
}

.cons-content {
    width: 98%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.con-item {
    width: 100%;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    border: 1px solid #ddd;
}



.con-item h3 {
    font-family: 'Coustard', serif;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 400;
    color: #2a475a;
    line-height: 1.2;
    min-height: 3.6rem;
    text-align: center;
}

.con-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #222;
    margin-top: 0;
}

.note-section {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
}

.note-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #000;
    font-style: italic;
}

.highlight {
    background-color: #83a0b3;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    transition: all 0.4s ease;
    display: inline-block;
    transform-origin: center;
}


.pros-section h2 .highlight,
.cons-section h2 .highlight {
    background: none;
    border-bottom: 3px solid #83a0b3;
    padding-bottom: 0.2rem;
    border-radius: 0;
    transition: all 0.4s ease;
    display: inline-block;
    transform-origin: center;
}



/* Going out of network page specific styles - all sections at 1200px */
body:has(.out-of-network-intro) .pros-section .container,
body:has(.out-of-network-intro) .pros-content,
body:has(.out-of-network-intro) .cons-section .container,
body:has(.out-of-network-intro) .cons-content,
body:has(.out-of-network-intro) .consultation-section .container,
body:has(.out-of-network-intro) .note-section {
    width: 98%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Footer */
footer {
    background-color: #2a475a;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 25px;
}

/* Responsive design */


@media (max-width: 1177px) {
    .about-john-content {
        flex-direction: column;
        gap: 0;
        padding: 0;
        border-radius: 100px;
        background-color: #2a475a;
        border: 1px solid #000;
        overflow: hidden;
    }
    
    .about-john-image {
        flex: none;
        width: 100%;
        max-width: none;
        align-self: stretch;
    }
    
    .about-john-image img {
        aspect-ratio: 1;
        border-radius: 100px 100px 0 0;
        box-shadow: none;
    }
    
    .about-john-text {
        padding: 2rem 4rem 4rem 4rem;
        background-color: #2a475a;
    }
    
    .about-john-text h2 {
        font-size: 2.3rem;
        text-align: left;
        color: #fcfdf8;
        margin-bottom: 0.5rem;
    }
    
    .about-john-text h3 {
        font-size: 1.25rem;
        text-align: left;
        color: #7e9e73;
        margin-bottom: 1.5rem;
    }
    
    .about-john-text p {
        font-size: 1.05rem;
        text-align: left;
        color: #fcfdf8;
        margin-bottom: 1.5rem;
    }
    
    .about-john-cta {
        max-width: 320px;
        margin: 0;
        padding: 0.9rem 2rem;
        font-size: 1.2rem;
    }
}

.youtube-section .container{
    display: flex;
    justify-content: center;
    max-width: var(--max-width);
    height: 100%;
    min-height: 275px;
    margin-top: 8rem;
    margin-bottom: 3rem;
}

.youtube-section iframe{    
    aspect-ratio: 16 / 9;
    width: 100% !important;
    border-radius: 25px;
}

@media (max-width: 960px) {
    #start-feeling-more-like-your-best-self .button-container {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    #start-feeling-more-like-your-best-self .what-to-expect-link,
    #start-feeling-more-like-your-best-self .rates-link {
        max-width: 350px;
    }
}







@media (max-width: 767px) {
    p {
        font-size: 1.05rem !important;
        line-height: 1.6 !important;
    }

    h2 {
        font-size: 1.9rem !important;
        line-height: 1.3 !important;
    }

    h3 {
        font-size: 1.4rem !important;
    }

    h4 {
        font-size: 1.5rem !important;
    }
    
    .about-john-section {
        margin-bottom: 0;
    }
    
    .consultation-section {
        padding: 3rem 0;
        padding-top: 0;
        margin-bottom: 0;
    }
    
    .consultation-section p {
        margin-bottom: 2rem;
    }
    
    .services-page .hero h1 {
        text-shadow: none;
    }
    
    .sound-like-you-text h2 {
        text-align: left !important;
        font-size: 2.3rem !important;
    }
    
    .concerns-list h2 {
        font-size: 2.1rem !important;
        margin-bottom: 1rem;
    }
    
    .concern-item h3 {
        font-size: 1.3rem !important;
    }
    
    .concern-item {
        padding-right: 10px;
    }
    
    .concerns-list {
        margin-bottom: 1rem;
    }
    
    #how-well-work-together {
        padding: 0;
        margin-bottom: 0;
    }
    
    #how-well-work-together .container h2 {
        font-size: 2.3rem !important;
        margin-bottom: 1rem;
    }
    
    .learn-more-section h2 {
        font-size: 3rem !important;
    }
    
    .learn-more-section {
        padding-top: 2rem;
        margin-bottom: 0;
    }
    
    .learn-more-grid {
        gap: 3.5rem;
    }
    
    .card-cta {
        font-size: 1.1rem !important;
    }
    
    .sound-like-you-section {
        margin-top: 2rem;
        margin-bottom: 0;
        padding: 1rem 0;
    }
    
    footer {
        margin-top: 0;
    }
    
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        margin-left: 0;
        margin-right: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: #fcfdf8;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        transition: left 0.3s ease;
        z-index: 1000;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0;
    }
    
    .nav-menu a {
        font-size: 1.1rem;
        padding: 1.2rem 2.5rem;
        border-radius: 8px;
        transition: background-color 0.3s ease;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .logo {
        position: relative;
        top: auto;
        left: auto;
        margin: 0;
        z-index: 1001;
    }
    
    .logo-circle {
        width: 80px;
        height: 80px;
    }
    
    .logo-circle span {
        font-size: 50px;
    }
    
    .cta-button {
        display: none;
    }
    
    .cta-button--mobile {
        display: block;
        margin-top: 1rem;
    }
    
    .cta-button--mobile a {
        display: inline-flex;
        align-items: center;
        justify-content: space-between;
        background: #578151;
        color: #FFF;
        text-decoration: none;
        padding: 1rem 2rem;
        border-radius: 13px;
        font-family: 'Noto Sans', sans-serif;
        font-weight: 300;
        font-size: 1rem;
        transition: all 0.4s ease;
        border: 1px solid #4a6b3f;
        white-space: nowrap;
        text-align: center;
        box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.2);
        gap: 0.5rem;
        min-height: 44px;
    }
    
    .cta-button--mobile a:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    }
    
    .cta-button--tablet {
        display: none;
    }
    
    .cta-button--desktop {
        display: none;
    }
    
    .consultation-btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
        min-height: 44px;
    }
    
    .hero h1 {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 0.8rem;
    }
    
    .hero-subheading {
        font-size: 1.25rem !important;
        margin-bottom: 2rem;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    }
    
    .hero .container {
        padding: 0 1.5rem;
        text-align: center;
    }
    
    .hero p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    
    #start-feeling-more-like-your-best-self h2 {
        font-size: 2.3rem;
        text-align: left !important;
        line-height: 1.7 !important;
        margin-bottom: 1.5rem;
    }
    
    #start-feeling-more-like-your-best-self p {
        font-size: 1rem;
        text-align: center;
        max-width: 100%;
        margin: 0 auto 1.5rem;
        line-height: 1.6;
    }
    
    #start-feeling-more-like-your-best-self .button-container {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    
    #start-feeling-more-like-your-best-self .what-to-expect-link,
    #start-feeling-more-like-your-best-self .rates-link {
        max-width: 100% !important;
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0;
    }
    
    .about-john-image {
        min-height: unset;
    }
    
    .services-page .hero {
        background-position: center;
        padding: 9rem 0;
    }
    
    .services-page .hero .container {
        padding: 0;
        text-align: center;
    }
    
    .sound-like-you-section .container {
        padding: 40px 20px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.3;
    }
    
    .hero h2 {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .sound-like-you-text h2 {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .sound-like-you-text p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .concerns-list h2 {
        font-size: 2.2rem;
        text-align: center;
        line-height: 1.3;
    }
    
    .concern-item h3 {
        font-size: 1.5rem;
        line-height: 1.4;
    }
    
    .concern-item p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    #how-well-work-together h2 {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    #how-well-work-together p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    #how-well-work-together .container {
        padding: 20px;
    }
    
    .consultation-section h2 {
        font-size: 2.2rem !important;
        line-height: 1.3;
        text-align: left;
    }
    
    .consultation-section p {
        font-size: 1rem;
        line-height: 1.6;
        text-align: left
    }
    
    .consultation-section .container {
        border-radius: 30px;
        padding: 3rem 1.5rem;
        margin: 0 auto;
    }
    
    .concerns-content {
        padding: 2rem 0;
        gap: 1.5rem;
        flex-direction: column;
        width: 98%;
        align-items: center;
    }
    
    .concerns-image {
        flex: none;
        width: 100%;
    }
    
    .concerns-image img {
        height: 350px;
    }
    
    .concerns-list {
        flex: none;
        width: 100%;
    }
    
    .concern-item {
        padding-left: 10px;
    }
    
    .learn-more-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 90%;
        max-width: 500px;
    }
    
    .card-content {
        padding: 10px 0 0 0;
    }
    
    .learn-more-section h2 {
        font-size: 2.1rem;
        text-align: center;
        line-height: 1.3;
        margin-top: 1rem;
    }
    
    .card-cta {
        font-size: 1rem;
        padding: 1rem 1.5rem;
        white-space: normal;
        min-height: 44px;
    }
    
    .card-content {
        padding: 0;
        margin-top: 10px;
    }
    
    .about-john-content {
        border-radius: 30px;
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .about-john-image img {
        border-radius: 30px 30px 0 0;
        height: 350px;
    }
    
    .about-john-text {
        padding: 1.5rem 1.5rem 2rem 1.5rem;
        text-align: center;
    }
    
    .about-john-text h2 {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .about-john-text h3 {
        font-size: 1.5rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
    }
    
    .about-john-text p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .about-john-cta {
        max-width: none !important;
        width: 100%;
        display: flex;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        margin: 0;
        justify-content: space-between;
    }
    
    /* About Page - Mobile */
    .about-john-content {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 2rem;
        border-radius: 30px;
    }
    
    .about-john-image {
        flex: none;
        width: 100%;
        order: 1;
    }
    
    .about-john-image img {
        width: 100%;
        height: 400px;
        border-radius: 30px 30px 0 0;
    }
    
    .about-john-text {
        flex: none;
        width: 100%;
        order: 2;
        padding: 0 1.5rem 1.5rem 1.5rem;
        text-align: center;
    }
    
    .about-john-text h2 {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .about-john-text h3 {
        font-size: 1.8rem;
        line-height: 1.4;
    }
    
    .about-john-text p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .about-john-cta {
        max-width: 100%;
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        margin: 0 auto;
        justify-content: space-between;
    }
    
    /* About John Intro - Mobile */
    .about-john-intro {
        padding: 0;
        margin-top: 2rem;
    }
    
    .about-john-intro-content {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .about-john-intro-image {
        flex: none;
        width: 100%;
        order: 1;
    }
    
    .about-john-intro-image img {
        width: 100%;
        height: 100%;
        border-radius: 30px;
        object-fit: cover;
        aspect-ratio: auto;
    }
    
    .about-john-intro-text {
        flex: none;
        width: 100%;
        order: 2;
        text-align: left;
    }
    
    .about-john-intro h1 {
        font-size: 2rem !important;
        margin-bottom: 1.5rem;
        line-height: 1.3;
    }
    
    .personal-text p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .background-list h2 {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .background-item h3 {
        font-size: 2.2rem;
    }
    
    .background-item p {
        font-size: 1.1rem;
    }
    
    .background-item li {
        font-size: 1rem;
    }
    
    .about-john-intro-text p {
        font-size: 1rem;
    }
    
    .about-john-intro-text ul {
        margin: 0.8rem 0;
        padding-left: 1.2rem;
    }
    
    .about-john-intro-text li {
        font-size: 1rem;
    }
    
    /* John's Background Section - Mobile */
    .johns-background-section {
        padding: 2rem 0;
    }
    
    .johns-background-section i {
        font-weight: 300 !important;
    }
    
    .background-list h2 {
        font-size: 3rem;
        padding: 0;
    }
    
    .background-item {
        padding: 0;
    }
    
    .background-item h3 {
        font-size: 2.2rem;
    }
    
    .background-item p {
        font-size: 1.1rem;
    }
    
    .background-item li {
        font-size: 1.1rem;
    }
    
    /* Personal Section - Mobile */
    .personal-section {
        padding: 0;
    }
    
    .personal-section h2 {
        font-size: 3rem;
    }
    
    .personal-content {
        flex-direction: column;
        align-items: center;
        background: white;
        border-radius: 30px;
        box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.2);
        border: 1px solid #4a6b3f;
        overflow: hidden;
        margin: 0 1rem;
    }
    
    .personal-image {
        flex: none;
        width: 100%;
        order: 1;
    }
    
    .personal-image img {
        width: 100%;
        height: 100%;
        border-radius: 0;
        object-fit: cover;
        border-bottom: 1px solid black;
    }
    
    .personal-text {
        flex: none;
        width: 100%;
        order: 2;
        padding: 1.5rem;
        text-align: left;
        background-color: #2a475a;
        border-radius: 0;
    }
    
    .personal-text p {
        font-size: 1.1rem;
    }
    
    /* Out of Network Intro - Mobile */
    .out-of-network-intro {
        padding: 3rem 0;
    }
    
    .out-of-network-intro h1 {
        font-size: 2.5rem;
    }
    
    /* Pros Section - Mobile */
    .pros-section {
        padding: 0;
    }
    
    .pros-content {
        padding: 20px 0;
        gap: 2rem;
    }
    
    /* Pros Section - Mobile */
    .pros-section h2 {
        margin-top: 20px;
        margin-bottom: 10px;
    }
    
    .pro-item {
        width: 94%;
        max-width: 100%;
        padding: 2rem 1.5rem;
    }
    
    .pro-item h3 {
        font-size: 1.6rem;
    }
    
    .pro-item p {
        font-size: 1.1rem;
    }
    
    /* Cons Section - Mobile */
    .cons-section {
        padding: 3rem 0 !important;
    }
    
    .cons-content {
        grid-template-columns: 1fr;
    }
    
    .con-item {
        width: 94%;
        max-width: 100%;
        margin: 0 auto;
        padding: 2rem 1.5rem;
        border-radius: 20px;
        border: 1px solid #ddd;
    }
    
    .con-item h3 {
        font-family: 'Coustard', serif;
        font-size: 1.6rem;
        font-weight: 400;
        line-height: 1;
        text-align: left;
        min-height: 0;
    }
    
    .con-item p {
        font-size: 1.1rem;
    }
    
    .note-section {
        width: 94% !important;
        max-width: 100% !important;
        margin: 0 auto;
    }
    
    /* What to Expect Page - Mobile */
    .what-to-expect-hero {
        padding: 0;
    }
    
    .what-to-expect-hero-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .what-to-expect-hero-text {
        flex: none;
        width: 100%;
        padding: 0 2rem 2rem 2rem;
        text-align: center;
        order: 2;
    }
    
    .what-to-expect-hero-text h1 {
        font-size: 2.5rem;
        text-align: left;
        margin-bottom: 1rem;
    }
    
    .what-to-expect-hero-text h2 {
        font-size: 3rem;
    }
    
    .what-to-expect-hero-text p {
        font-size: 1.1rem;
        text-align: left;
        margin-bottom: 1rem;
    }
    
    
    .what-to-expect-hero-cta {
        font-size: 1.1rem;
        padding: 0.8rem 1.5rem;
        display: inline-flex;
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem;
    }
    
    .what-to-expect-hero-image {
        flex: none;
        width: 100%;
        order: 1;
    }
    
    .what-to-expect-hero-image img {
        height: 400px;
        border-radius: 0 0 30px 30px;
    }
    
    .teletherapy-section {
        padding: 3rem 0 4.5rem 0;
        margin-bottom: 0;
    }
    
    .teletherapy-subsection-quiet {
        width: 98%;
        padding: 20px 1rem 20px 1rem;
    }
    
    .teletherapy-section h2 {
        font-size: 3rem;
        text-align: center;
        width: 98%;
    }
    
    .teletherapy-section > .container > p {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .teletherapy-subsections {
        gap: 1.5rem;
        width: 100%;
    }
    
    .teletherapy-subsection {
        padding: 2rem 1.5rem;
        width: 94%;
        margin: 0 auto;
    }
    
    .teletherapy-subsection h3 {
        font-size: 2.2rem;
    }
    
    .teletherapy-subsection p {
        font-size: 1.1rem;
    }
    
    .teletherapy-section h2 {
        margin-bottom: 0;
    }
    
    /* Rates Page - Mobile */
    .rates-section {
        padding: 3rem 0;
        margin-bottom: 3rem;
    }
    
    .rates-content {
        padding: 3rem 2rem;
    }
    
    .rates-text h1 {
        font-size: 2.5rem !important;
        text-align: center;
    }
    
    .rates-text p {
        font-size: 0.9rem;
        text-align: left;
    }
    
    .rates-text-cost {
        font-size: 1.1rem;
    }
    
    .rates-text-note {
        font-size: 0.9rem;
    }
    
    .insurance-section {
        padding: 0 !important;
        margin-bottom: 0;
    }
    
    .insurance-section h2 {
        font-size: 2.5rem !important;
    }
    
    .insurance-section p {
        font-size: 0.9rem;
    }
    
    .insurance-cta {
        font-size: 0.95rem;
        width: 100%;
    }
    
    .licenses-section {
        padding-top: 4rem;
        padding-bottom: 0;
    }
    
    .licenses-section h2 {
        font-size: 3rem;
        text-align: center;
    }
    
    .licenses-content {
        gap: 2rem;
    }
    
    .license-item {
        padding: 0;
        margin-bottom: 2rem;
    }
    
    .states-map img {
        margin-bottom: 1rem !important;
    }
    
    .license-item h3 {
        font-size: 1.1rem;
    }
    
    .license-item p {
        font-size: 0.9rem;
    }
    
    .license-item ul {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero h2 {
        font-size: 3rem;
    }
    
    .sound-like-you-text h2 {
        font-size: 3rem;
    }
    
    .sound-like-you-text p {
        font-size: 0.95rem;
    }
    
    .concerns-list h2 {
        font-size: 3rem;
        text-align: center;
    }
    
    .concern-item h3 {
        font-size: 1.7rem;
    }
    
    .concern-item p {
        font-size: 0.9rem;
    }
    
    #how-well-work-together h2 {
        font-size: 3rem;
    }
    
    #how-well-work-together p {
        font-size: 0.95rem;
    }
    
    .consultation-section h2 {
        font-size: 2rem !important;
    }
    
    .consultation-section p {
        font-size: 0.95rem;
    }
    
    .teletherapy-section h2 {
        font-size: 2.5rem;
        text-align: left;
        width: 98%;
        padding: 0 1rem;
        margin: auto;
    }
    
    .concerns-content {
        padding: 2rem 0;
        gap: 1.5rem;
        flex-direction: column;
        width: 98%;
        align-items: center;
    }
    
    .concerns-image {
        flex: none;
        width: 100%;
    }
    
    .concerns-list {
        flex: none;
        width: 100%;
    }
    
    .concern-item {
        padding-left: 10px;
    }
    
    .learn-more-grid {
        gap: 2.5rem;
    }
    
    .learn-more-section h2 {
        font-size: 2.75rem !important;
    }
    
    .card-cta {
        font-size: 0.95rem;
        padding: 0.7rem 1.2rem;
    }
    
    .card-content {
        padding: 0;
        margin-top: 10px;
    }
    
    .about-john-content {
        border-radius: 30px;
    }
    
    .about-john-image img {
        border-radius: 30px 30px 0 0;
    }
    
    .about-john-text {
        padding: 1rem 1.5rem 1.5rem 1.5rem;
    }
    
    .about-john-text h2 {
        font-size: 3rem;
    }
    
    .about-john-text h3 {
        font-size: 1rem;
    }
    
    .about-john-text p {
        font-size: 0.95rem;
    }
    
    .about-john-cta {
        max-width: 250px;
        padding: 0.7rem 1.2rem;
        font-size: 1rem;
    }
    
    .youtube-section .container {
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
    
    /* About Page - Small Mobile */
    .about-john-content {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem 1.5rem;
        border-radius: 25px;
    }
    
    .about-john-image {
        flex: none;
        width: 100%;
        order: 1;
    }
    
    .about-john-image img {
        width: 100%;
        height: 300px;
        border-radius: 25px 25px 0 0;
    }
    
    .about-john-text {
        flex: none;
        width: 100%;
        order: 2;
        padding: 0 1rem 2rem 1rem;
        text-align: center;
    }
    
    .about-john-text h2 {
        font-size: 1.8rem;
    }
    
    .about-john-text h3 {
        font-size: 1rem;
    }
    
    .about-john-text p {
        font-size: 1rem;
    }
    
    .about-john-cta {
        max-width: 250px;
        padding: 0.7rem 1.2rem;
        font-size: 1rem;
        margin: 0 auto;
    }
    
    /* About John Intro - Small Mobile */
    .about-john-intro {
        padding: 0;
        margin-top: 2rem;
    }
    
    .about-john-intro-content {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .about-john-intro-image {
        flex: none;
        width: 100%;
        order: 1;
    }
    
    .about-john-intro-image img {
        width: 100%;
        height: 100%;
        border-radius: 25px;
        object-fit: cover;
        aspect-ratio: auto;
    }
    
    .about-john-intro-text {
        flex: none;
        width: 100%;
        order: 2;
        text-align: left;
    }
    
    .about-john-intro h1 {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .personal-text p {
        font-size: 0.95rem;
    }
    
    .background-list h2 {
        font-size: 3rem;
    }
    
    .background-item h3 {
        font-size: 2rem;
    }
    
    .background-item p {
        font-size: 0.95rem;
    }
    
    .background-item li {
        font-size: 0.95rem;
    }
    
    .about-john-intro-text p {
        font-size: 1rem;
    }
    
    .about-john-intro-text ul {
        margin: 0.7rem 0;
        padding-left: 1.1rem;
    }
    
    .about-john-intro-text li {
        font-size: 1rem;
    }
    
    /* John's Background Section - Small Mobile */
    .johns-background-section {
        padding: 2rem 0;
    }
    
    .johns-background-section i {
        font-weight: 700;
    }
    
    .background-list h2 {
        font-size: 3rem;
        padding: 0;
    }
    
    .background-item {
        padding: 0;
    }
    
    .background-item h3 {
        font-size: 2rem;
    }
    
    .background-item p {
        font-size: 1rem;
    }
    
    .background-item li {
        font-size: 1rem;
    }
    
    /* Personal Section - Small Mobile */
    .personal-section {
        padding: 0;
    }
    
    .personal-section h2 {
        font-size: 3rem;
    }
    
    .personal-content {
        flex-direction: column;
        gap: 0;
        align-items: center;
        background: white;
        border-radius: 30px;
        box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.2);
        border: 1px solid #4a6b3f;
        overflow: hidden;
        margin: 0;
        display: block;
        width: 100%;
        max-width: none;
    }
    
    .personal-image {
        flex: none;
        width: 100%;
        order: 1;
    }
    
    .personal-image img {
        width: 100%;
        height: 100%;
        border-radius: 0;
        object-fit: cover;
        border-bottom: 1px solid black;
    }
    
    .personal-text {
        flex: none;
        width: 100%;
        order: 2;
        padding: 1rem 1rem 2rem 1rem;
        text-align: left;
    }

    .personal-text h2 {
        margin-bottom: 0.5rem;
    }
    
    .personal-text p {
        font-size: 1rem;
    }
    
    /* Pros Section - Small Mobile */
    .pros-section {
        padding: 0;
    }
    
    .pros-content {
        padding: 20px 0;
    }
    
    .pro-item {
        width: 94%;
        max-width: 100%;
        padding: 1.5rem 1rem;
    }
    
    .pro-item h3 {
        font-size: 1.4rem;
    }
    
    .pro-item p {
        font-size: 0.9rem;
    }
    
    .con-item {
        width: 94%;
        max-width: 100%;
        margin: 0 auto;
        padding: 1.5rem 1rem;
        border-radius: 20px;
        border: 1px solid #ddd;
    }
    
    .con-item h3 {
        font-family: 'Coustard', serif;
        font-size: 1.4rem;
        font-weight: 400;
        line-height: 1.2;
        text-align: left;
        min-height: 0;
    }
    
    .con-item p {
        font-size: 0.9rem;
    }
    
    .note-section {
        width: 94% !important;
        max-width: 100% !important;
        margin: 0 auto;
    }
    
    /* What to Expect Page - Small Mobile */
    .what-to-expect-hero {
        padding: 0;
    }
    
    .what-to-expect-hero-text {
        padding: 0 1.5rem 2rem 1.5rem;
        order: 2;
    }
    
    .what-to-expect-hero-text h2 {
        font-size: 3rem;
    }
    
    .what-to-expect-hero-text p {
        font-size: 0.95rem;
    }
    
    .what-to-expect-hero-cta {
        font-size: 1rem;
        padding: 0.7rem 1.2rem;
        display: inline-flex;
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem;
    }
    
    .what-to-expect-hero-image {
        order: 1;
    }
    
    .what-to-expect-hero-image img {
        height: 300px;
        border-radius: 0 0 25px 25px;
    }
    
    .teletherapy-section {
        padding: 2rem 0 2rem 0;
        margin-bottom: 0;
        border-radius: 25px;
    }
    
    .teletherapy-section h2 {
        font-size: 3rem;
    }
    
    .teletherapy-section > .container > p {
        font-size: 0.95rem;
    }
    
    .teletherapy-subsections {
        gap: 1rem;
        width: 100%;
    }
    
    .teletherapy-subsection {
        padding: 1.5rem 1rem;
    }
    
    .teletherapy-subsection h3 {
        font-size: 1.1rem;
    }
    
    .teletherapy-subsection p {
        font-size: 0.9rem;
    }
    
    .teletherapy-section h2 {
        margin-bottom: 0;
    }
}

@media (max-width: 767px) {
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        margin-left: 0;
        margin-right: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: #fcfdf8;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        transition: left 0.3s ease;
        z-index: 1000;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0;
    }
    
    .nav-menu a {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        border-radius: 8px;
        transition: background-color 0.3s ease;
    }
    
    .logo {
        position: relative;
        top: auto;
        left: auto;
        margin: 0;
        z-index: 1001;
    }
    
    .logo-circle {
        width: 80px;
        height: 80px;
    }
    
    .logo-circle span {
        font-size: 60px;
    }
    
    .cta-button {
        display: none;
    }
    
    .cta-button--mobile {
        display: block;
        margin-top: 1rem;
    }
    
    .cta-button--mobile a {
        display: inline-flex;
        align-items: center;
        justify-content: space-between;
        background: #578151;
        color: #FFF;
        text-decoration: none;
        padding: 0.75rem 1.5rem;
        border-radius: 13px;
        font-family: 'Noto Sans', sans-serif;
        font-weight: 300;
        font-size: 1.1rem;
        transition: all 0.4s ease;
        border: 1px solid #4a6b3f;
        white-space: nowrap;
        text-align: center;
        box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.2);
        gap: 0.5rem;
    }
    
    .cta-button--mobile a:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    }
    
    .cta-button--tablet {
        display: none;
    }
    
    .cta-button--desktop {
        display: none;
    }
    
    .consultation-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .hero h1 {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    }
    
    #start-feeling-more-like-your-best-self .container {
        padding: 4rem 3rem;
    }
    
    #start-feeling-more-like-your-best-self h2 {
        font-size: 2.2rem;
        text-align: center;
    }
    
    #start-feeling-more-like-your-best-self p {
        font-size: 1.05rem;
        text-align: center;
        max-width: 600px;
        margin: 0 auto 1.5rem;
    }
    
    #start-feeling-more-like-your-best-self .button-container {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    #start-feeling-more-like-your-best-self .what-to-expect-link,
    #start-feeling-more-like-your-best-self .rates-link {
        max-width: 300px;
        padding: 0.9rem 2rem;
        font-size: 1.2rem;
    }
}

@media (min-width: 1023px) {
    .concerns-content {
        padding: 2rem 0;
    }
    
    .concerns-image img {
        box-shadow: none;
        height: 500px;
    }
    
    .learn-more-section .container {
        padding: 0;
    }
    
    .learn-more-section {
        padding: 0;
    }
    
    .learn-more-section {
        padding: 0;
    }
    
    .learn-more-section {
        padding: 0;
    }
    
    .card-content {
        padding: 2rem 0;
    }
    
    .cta-button--mobile {
        display: none;
    }
    
    .cta-button--tablet {
        display: none;
    }
    
    .cta-button--desktop {
        display: inline-flex;
    }
}

/* Tablet breakpoint - shows tablet CTA button next to logo */
@media (min-width: 768px) and (max-width: 1022px) {
    :root {
        --max-width: 96%;
    }
    
    .teletherapy-subsection-quiet {
        padding: 0rem 3rem 50px 3rem;
        width: 98%;
    }
    
    .teletherapy-section h2 {
        width: 98%;
    }
    
    .container {
        padding: 0;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero h2 {
        font-size: 1.3rem;
    }
    
    .sound-like-you-text h2 {
        font-size: 3rem;
    }
    
    .sound-like-you-text p {
        font-size: 1.1rem;
    }
    
    .concerns-content {
        padding: 0;
        margin: 0;
        gap: 2rem;
        flex-direction: column;
        width: 100%;
        align-items: center;
    }
    
    .concerns-image {
        flex: none;
        width: 100%;
    }
    
    .concerns-list {
        flex: none;
        width: 100%;
    }
    
    .concern-item {
        padding-left: 10px;
    }
    
    .concerns-list h2 {
        font-size: 3rem;
        text-align: center;
    }
    
    .concern-item h3 {
        font-size: 1.7rem;
    }
    
    .concern-item p {
        font-size: 1rem;
    }
    
    #how-well-work-together h2 {
        font-size: 3rem;
    }
    
    #how-well-work-together p {
        font-size: 1.1rem;
    }
    
    #how-well-work-together {
        padding-bottom: 0;
    }
    
    .consultation-section h2 {
        font-size: 2.2rem;
    }
    
    .consultation-section p {
        font-size: 1.1rem;
    }
    
    .consultation-section {
        padding: 2rem 0;
        padding-top: 0;
        padding-bottom: 2rem;
    }
    
    .learn-more-section h2 {
        text-align: center;
    }
    
    .learn-more-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
        justify-items: center;
    }
    
    .learn-more-grid .learn-more-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 50%;
    }
    
    .card-cta {
        font-size: 1rem;
        padding: 0.6rem 1.2rem;
        white-space: normal;
        min-height: 44px;
        align-items: center;
    }
    
    #start-feeling-more-like-your-best-self .container {
        padding: 3rem 0;
    }
    
    .sound-like-you-section .container {
        padding: 3rem;
    }
    
    .card-content {
        padding: 0;
        margin-top: 10px;
    }
    
    /* About Page - Tablet */
    .about-john-content {
        flex-direction: column;
        gap: 2rem;
        padding: 3rem 4rem;
        border-radius: 50px;
        align-items: stretch;
    }
    
    .about-john-image {
        flex: none;
        width: 100%;
        order: 1;
    }
    
    .about-john-image img {
        width: 100%;
        height: 400px;
        border-radius: 50px 50px 0 0;
        object-fit: cover;
    }
    
    .about-john-text {
        flex: none;
        width: 100%;
        order: 2;
        padding: 0 2rem 2rem 2rem;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .about-john-text h2 {
        font-size: 2.5rem;
    }
    
    .about-john-text h3 {
        font-size: 1.2rem;
    }
    
    .about-john-text p {
        font-size: 1.1rem;
    }
    
    .about-john-section {
        padding-top: 25px;
        margin-bottom: 25px;
    }
    
    .about-john-section .container {
        width: 100%;
    }

    
    .about-john-cta {
        max-width: 300px;
        padding: 0.9rem 1.8rem;
        font-size: 1.2rem;
        margin: 0 auto;
    }
    
    /* About John Intro - Tablet */
    .about-john-intro {
        padding: 0;
        margin-top: 2rem;
    }
    
    .about-john-intro-content {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
    
    .about-john-intro-image {
        flex: none;
        width: 100%;
        order: 1;
    }
    
    .about-john-intro-image img {
        width: 100%;
        height: 700px;
        border-radius: 50px;
        object-fit: cover;
        aspect-ratio: auto;
    }
    
    .about-john-intro-text {
        flex: none;
        width: 100%;
        order: 2;
        text-align: left;
    }
    
    .about-john-intro h1 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .johns-background-section h2,
    .personal-section h2,
    .learn-more-section h2,
    .consultation-section h2 {
        text-align: center;
    }
    
    .personal-text p {
        font-size: 1.1rem;
    }
    
    .personal-text h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .personal-text {
        padding: 4rem !important;
    }
    
    .background-list h2 {
        font-size: 2rem;
    }
    
    .background-item h3 {
        font-size: 2rem;
    }
    
    .background-item p {
        font-size: 1.1rem;
    }
    
    .background-item li {
        font-size: 1.1rem;
    }
    
    .about-john-intro-text p {
        font-size: 1.1rem;
    }
    
    .about-john-intro-text ul {
        margin: 1rem 0;
        padding-left: 1.5rem;
    }
    
    .about-john-intro-text li {
        font-size: 1.1rem;
    }
    
    /* Pros Section - Tablet */
    .pros-section {
        padding: 0;
    }
    
    .pros-content {
        padding: 20px 0;
    }
    
    .cons-section {
        padding: 3rem 0 !important;
    }
    
    .con-item {
        width: 85%;
        max-width: 100%;
        margin: 0 auto;
        padding: 3rem;
        border-radius: 20px;
        border: 1px solid #ddd;
    }
    
    .con-item h3 {
        font-family: 'Coustard', serif;
        font-size: 1.8rem;
        font-weight: 400;
        line-height: 1.2;
        text-align: left;
        min-height: 0;
    }
    
    .note-section {
        width: 85% !important;
        max-width: 100% !important;
        margin: 0 auto;
    }
    
    /* Out of Network Intro - Tablet */
    .out-of-network-intro h1 {
        font-size: 3.5rem;
    }
    
    .out-of-network-intro .container {
        width: 85%;
    }
    
    /* Pros Section - Tablet */
    .pros-section h2 {
        margin-top: 30px;
        margin-bottom: 10px;
    }
    
    /* John's Background Section - Tablet */
    .johns-background-section {
        padding: 2rem 0;
    }
    
    .johns-background-section i {
        font-weight: 300;
    }
    
    .background-list h2 {
        font-size: 2rem;
        padding: 0;
    }
    
    .background-item {
        padding: 0;
    }
    
    .background-item h3 {
        font-size: 1.5rem;
    }
    
    .background-item p {
        font-size: 1.1rem;
    }
    
    .background-item li {
        font-size: 1.1rem;
    }
    
    /* Personal Section - Tablet */
    .personal-section {
        padding: 0;
    }
    
    .personal-section h2 {
        font-size: 2rem;
    }
    
    .personal-content {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
    
    .personal-image {
        flex: none;
        width: 100%;
        order: 1;
    }
    
    .personal-image img {
        width: 100%;
        height: 100%;
        border-radius: 50px;
        object-fit: cover;
    }
    
    .personal-text {
        flex: none;
        width: 100%;
        order: 2;
        padding: 2rem;
        text-align: left;
    }
    
    .personal-text p {
        font-size: 1.1rem;
    }
    
    /* Pros Section - Tablet */
    .pro-item {
        width: 85%;
        max-width: 100%;
        padding: 3rem;
    }
    
    .pro-item h3 {
        font-size: 1.8rem;
    }
    
    .pro-item p {
        font-size: 1rem;
    }
    
    /* Cons Section - Tablet */
    .cons-content {
        grid-template-columns: 1fr;
    }
    
    .con-item {
        max-width: 100%;
        padding: 3rem;
    }
    
    .con-item h3 {
        font-size: 1.8rem;
    }
    
    .con-item p {
        font-size: 1rem;
    }
    
    /* What to Expect Page - Tablet */
    .what-to-expect-hero {
        padding: 0;
    }
    
    .what-to-expect-hero-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .what-to-expect-hero-text {
        flex: none;
        width: 100%;
        padding: 0 4rem 2rem 4rem;
        text-align: left;
        order: 2;
    }
    
    .what-to-expect-hero-image {
        flex: none;
        width: 100%;
        order: 1;
    }
    
    .what-to-expect-hero-text h1 {
        font-size: 3rem;
        text-align: left;
        margin-bottom: 1rem;
    }
    
    .what-to-expect-hero-text h2 {
        font-size: 3.5rem;
    }
    
    .what-to-expect-hero-text p {
        font-size: 1.1rem;
        text-align: left;
        margin-bottom: 1rem;
    }
    
    
    .what-to-expect-hero-cta {
        display: inline-flex;
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem;
    }
    
    .what-to-expect-hero-image img {
        height: 500px;
        border-radius: 0 0 50px 50px;
    }
    
    .teletherapy-section {
        padding: 4rem 0 4.5rem 0;
        margin-bottom: 0;
    }
    
    .teletherapy-section h2 {
        font-size: 3rem;
        text-align: center;
    }
    
    .teletherapy-section > .container > p {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .teletherapy-subsections {
        gap: 2rem;
        padding-bottom: 3rem;
    }
    
    .teletherapy-subsection h3 {
        font-size: 1.3rem;
    }
    
    .teletherapy-subsection p {
        font-size: 1rem;
    }
    
    .teletherapy-subsection {
        padding: 3rem;
    }
    
    
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        margin-left: 0;
        margin-right: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: #fcfdf8;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        transition: left 0.3s ease;
        z-index: 1000;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0;
    }
    
    .nav-menu a {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        border-radius: 8px;
        transition: background-color 0.3s ease;
    }
    
    .logo {
        position: relative;
        top: auto;
        left: auto;
        margin: 0;
        z-index: 1001;
        margin-right: 15px;
        display: flex;
        align-items: center;
    }
    
    .logo-circle {
        width: 80px;
        height: 80px;
    }
    
    .logo-circle span {
        font-size: 60px;
    }
    
    .cta-button {
        display: inline-flex;
        margin: 0;
        margin-left: 0;
    }
    
    .cta-button--mobile {
        display: block;
        margin-top: 1rem;
    }
    
    .cta-button--mobile a {
        display: inline-flex;
        align-items: center;
        justify-content: space-between;
        background: #578151;
        color: #FFF;
        text-decoration: none;
        padding: 0.75rem 1.5rem;
        border-radius: 13px;
        font-family: 'Noto Sans', sans-serif;
        font-weight: 300;
        font-size: 1.1rem;
        transition: all 0.4s ease;
        border: 1px solid #4a6b3f;
        white-space: nowrap;
        text-align: center;
        box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.2);
        gap: 0.5rem;
    }
    
    .cta-button--mobile a:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    }
    
    .cta-button--tablet {
        display: inline-flex;
        position: absolute;
        left: 120px;
    }
    
    .cta-button--tablet a {
        display: inline-flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
        background: #578151;
        color: #FFF;
        text-decoration: none;
        padding: 0.75rem 1.5rem;
        border-radius: 13px;
        font-family: 'Noto Sans', sans-serif;
        font-weight: 300;
        font-size: 1rem;
        transition: all 0.4s ease;
        border: 1px solid #4a6b3f;
        white-space: nowrap;
        text-align: center;
        box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.2);
    }
    
    .cta-button--tablet a:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    }
    
    .cta-button--desktop {
        display: none;
    }
    
    .consultation-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    /* Rates Page - Tablet */
    .rates-section {
        padding: 3rem 0;
        margin-bottom: 3rem;
    }
    
    .rates-content {
        padding: 3rem 2rem;
    }
    
    .rates-text h1 {
        font-size: 3rem;
    }
    
    .rates-text p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }
    
    .rates-text-cost {
        font-size: 1.2rem !important;
    }
    
    .rates-text-note {
        font-size: 0.95rem !important;
    }
    
    .insurance-section h2 {
        font-size: 3rem;
    }
    
    .insurance-section p {
        font-size: 0.95rem;
    }
    
    .insurance-cta {
        font-size: 1rem;
        padding: 0.9rem 1.8rem;
    }
    
    .insurance-section .container {
        width: 94%;
    }
    
    .licenses-section {
        padding: 3rem 0;
    }
    
    .licenses-section h2 {
        font-size: 3rem;
        text-align: center;
    }
    
    .licenses-content {
        gap: 2.5rem;
    }
    
    .license-item {
        padding: 0;
    }
    
    .license-item h3 {
        font-size: 1.4rem;
    }
    
    .license-item p {
        font-size: 1.1rem;
    }
    
    .license-item ul {
        font-size: 1rem;
    }
    
    /* UL Optimization - Tablet */
    .about-john-intro-text ul {
        margin: 0.9rem 0;
        padding-left: 1.3rem;
    }
    
    .about-john-intro-text li {
        font-size: 1.05rem;
        margin-bottom: 0.45rem;
    }
    
    .background-item ul {
        padding-left: 1.3rem;
    }
    
    .background-item li {
        font-size: 1.05rem;
        margin-bottom: 0.45rem;
    }
}

/* Privacy Policy Page Styles */
.privacy-policy-content {
    padding: 6rem 0;
    background-color: #fff;
}

.privacy-policy-content .container {
    width: 98%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 6rem;
}

.privacy-section {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e0e0e0;
}

.privacy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.privacy-section h1 {
    font-family: 'Coustard', serif;
    font-size: 3rem;
    font-weight: 300;
    color: #2a475a;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.privacy-section h2 {
    font-family: 'Coustard', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: #2a475a;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.privacy-section p {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 1.5rem;
}

.privacy-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.privacy-section li {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 0.8rem;
}

.privacy-section a {
    color: #7e9e73;
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-section a:hover {
    color: #628855;
    text-decoration: underline;
}

/* Warning Text Styling */
.warning-text {
    width: 98%;
    max-width: 1400px;
    margin: 0.5rem auto;
    margin-bottom: 2rem;
    font-family: 'Noto Sans', sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    font-style: italic;
}

/* Contact Page Styles */
#contact-page {
    background-color: #f4f7e9;
    border-radius: 100px;
    width: 90%;
    max-width: 1300px;
    margin: 75px auto;
    border: 1px solid #000000;
    padding: 6rem 3%;
}
@media (max-width: 767px) {
    /* Privacy Policy Mobile Styles */
    .privacy-policy-content {
        padding: 3rem 0;
    }
    
    .privacy-policy-content .container {
        padding: 0 1.5rem;
    }
    
    .privacy-section {
        margin-bottom: 3rem;
        padding-bottom: 2rem;
    }
    
    .privacy-section h1 {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .privacy-section h2 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .privacy-section p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    .privacy-section ul {
        margin: 0.8rem 0;
        padding-left: 1.5rem;
    }
    
    .privacy-section li {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 0.6rem;
    }
    
    .warning-text {
        font-size: 0.9rem !important;
        line-height: 1;
    }

    #contact-page {
        width: 100%;
        border-radius: 75px;
        padding: 3rem 3%;
        padding-bottom: 4.5rem
    }


    /* Scale down headings on mobile and tighten line-height */
    .contact-consultation-section .section-heading,
    .contact-form-section .section-heading {
        font-size: 3rem;
        line-height: 1.1;
    }
    
    .contact-form-section .section-heading {
        text-align: left;
    }
    .contact-consultation-section {
        padding-bottom: 0 !important
    }

    .consultation-content p {   
        text-align: left !important;
    }
}
.contact-consultation-section {
    background-image: none;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.contact-consultation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.contact-consultation-section .container {
    position: relative;
    z-index: 2;
    text-align: left;
    width: 98%;
    max-width: 900px;
    margin: 0 auto;
}

.contact-consultation-section h1 {
    font-family: 'Coustard', serif;
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #333;
    text-align: center;
}

.consultation-content {
    text-align: center;
}

.consultation-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #000;
    text-align: center;
}

.cta-container {
    margin-top: 3rem;
    text-align: center;
}

.cta-button.dark-blue {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #578151;
    color: #FFF;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.2);
}

.cta-button.dark-blue:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.cta-button.dark-blue svg {
    transition: transform 0.3s ease;
}

.cta-button.dark-blue:hover svg {
    transform: translateX(3px);
}

.contact-form-section {
    margin-top: 6rem;
}

.contact-form-section h2 {
    font-family: 'Coustard', serif;
    font-size: 3rem;
    font-weight: 300;
    color: #333;
    text-align: center;
}

/* Footer Styles */
.site-footer {
    background: #2a475a;
    color: #fcfdf8;
    padding: 4rem 0;
}

.site-footer a {
    color: #fcfdf8;
}

.footer-columns {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 50% 1fr 1fr;
    column-gap: clamp(2rem, 6vw, 6rem);
    align-items: start;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}

/* Right align the third column content */
.footer-meta {
    text-align: right;
    align-items: flex-end;
    gap: 0;
}

.footer-title {
    font-family: 'Coustard', serif;
    font-size: 1.5rem;
    font-weight: 400;
    margin: 0;
    color: #fcfdf8;
}

.footer-text {
    margin: 0;
    line-height: 1.6;
    font-family: 'Noto Sans', sans-serif;
}

.footer-cta {
    display: inline-block;
    background: #fff;
    color: #0a2a43;
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 600;
}

.footer-label {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.8;
    font-family: 'Noto Sans', sans-serif;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-menu a {
    color: #fcfdf8;
    text-decoration: none;
    font-family: 'Noto Sans', sans-serif;
}

.footer-image img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    object-position: left;
    border-radius: 8px;
}

.footer-credit {
    font-size: 0.9rem;
    opacity: 0.85;
    font-family: 'Noto Sans', sans-serif;
}

.footer-copyright {
    font-size: 0.9rem;
    opacity: 0.85;
    font-family: 'Noto Sans', sans-serif;
}

/* Limit width of footer brand description and CTA */
.site-footer .footer-brand .footer-text,
.site-footer .footer-brand .consultation-btn {
    max-width: 450px;
}

@media (max-width: 767px) {
    .footer-columns {
        grid-template-columns: 1fr;
        row-gap: 50px;
    }
    .footer-col,
    .footer-meta {
        text-align: left;
        align-items: flex-start;
    }
    /* Make footer CTA full-width on mobile */
    .site-footer .footer-brand .consultation-btn {
        width: 100%;
        max-width: 450px;
    }
    /* Add horizontal padding to footer */
    .site-footer {
        padding-left: 3%;
        padding-right: 3%;
        margin-top: 0;
    }
}

/* Footer CTA uses light theme variant */
.site-footer .consultation-btn {
    background: #f4f7e9;
    color: #0b1217;
    border-color: #0b1217;
}

.contact-form {
    width: 98%;
    max-width: 1400px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

#text-consent-group, 
#message-group {
    margin-top: 2rem;
}

.form-group label {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Noto Sans', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7e9e73;
    box-shadow: 0 0 0 3px rgba(126, 158, 115, 0.1);
}

.radio-group {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.radio-option {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.radio-option:last-child {
    margin-bottom: 0;
}

.radio-option input[type="radio"] {
    margin-right: 0.75rem;
    width: 18px;
    height: 18px;
    accent-color: #7e9e73;
}

.radio-option label {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1rem;
    color: #333;
    cursor: pointer;
    margin: 0;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    margin-top: 2rem;
    text-align: right;
}

.submit-btn {
    width: 100%;
    background: #7e9e73;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.2);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.text-center {
    text-align: center;
}

/* Responsive adjustments for contact form */

/* Tablet and mobile - 1 column layout */
@media (max-width: 1022px) {
    .contact-consultation-section .container {
        max-width: 800px;
        margin: 0 auto;
    }
    
    .contact-form-section .container {
        max-width: 800px;
        margin: 0 auto;
    }
    
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-group {
        width: 100%;
    }
    
    .submit-btn {
        width: 100%;
    }
    
    .about-john-image img {
        height: 100%;
    }
    
    .about-john-content {
        padding: 0;
    }
    
    .about-john-cta {
        text-align: left;
        margin: 0;
        width: 100%;
        max-width: 350px;
    }
    
    .license-item ul {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        grid-auto-flow: row;
        gap: 1rem;
    }
    
    .license-item li {
        font-size: 1rem;
    }
    
    .rates-text-cost {
        font-size: 1.4rem !important;
    }
    
    .rates-text-note {
        font-size: 1rem !important;
    }
    
    .insurance-section .container {
        width: 94%;
    }
    
    .insurance-section {
        padding: 3rem 0;
    }
    
    .learn-more-card {
        overflow: hidden;
        background-color: #f4f7e9;
        box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.2);
        border: 1px solid #4a6b3f;
        border-radius: 30px;
        padding-bottom: 10px;
    }
    
    .card-image img{
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: 1px solid black;
    }
    
    .card-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        border-radius: 0;
        margin-bottom: 0;
        padding-bottom: 0;
    }
    
    .card-content {
        margin-top: 0;
    }
    
    .card-cta {
        border: none;
        box-shadow: none;
        border-radius: 50px;
        justify-content: space-between;
        font-size: 1.3rem !important;
    }
    
    .learn-more-grid {
        width: 100%;
    }
    
    .learn-more-card {
        transition: none !important;
    }
    
    .learn-more-card:hover {
        transform: none !important;
    }
    
    .learn-more-card:hover .card-image img {
        transform: none !important;
    }
    
    .card-image img {
        transition: none !important;
    }
    
    .card-image img:hover {
        transform: none !important;
    }
}

/* Small mobile - prevent button squishing */
@media (max-width: 480px) {
    .hero .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding: 8rem 0;
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
    }
    
    .hero h1 {
        font-size: 3rem;
        text-align: center;
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }
    
    .hero p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }
    
    .service-link {
        width: 100%;
        justify-content: space-between;
        text-align: center;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        min-height: 44px;
    }
    
    #start-feeling-more-like-your-best-self .container {
        padding: 2rem 1rem;
    }
    
    #start-feeling-more-like-your-best-self h2 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    #start-feeling-more-like-your-best-self p {
        text-align: left;
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .cta-button.dark-blue {
        width: 100%;
        justify-content: space-between;
        text-align: center;
        padding: 1rem 1.5rem;
        gap: 5px;
        font-size: 1rem;
        min-height: 44px;
    }
}

/* Very small screens - prevent insurance-cta cutoff */
@media (max-width: 370px) {
    .insurance-cta {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        white-space: normal;
        text-align: center;
        min-height: 44px;
    }
}