/**** IMPORT GOOGLE FONTS ****/
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Slabo+27px&family=Belleza&display=swap');

/**** DARKER GREEN COLOR PALETTE ****/
/*
Primary Dark: #2d4a1f (darkest - main text/headers)
Primary Medium: #3d5f2a (medium - buttons/accents)
Primary Light: #4a7c2f (lighter - hover states)
Accent: #5a9338 (brightest green for highlights)
Background: #e8f0e3 (light green background)
*/

/**** COPY THIS ENTIRE FILE TO YOUR styles.css ****/

/**** Global Styles ****/
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Belleza', sans-serif; background-color: #f9f9f9; overflow-x: hidden; }

/**** Navbar Styles ****/
.navbar { position: fixed !important; top: 0 !important; left: 0; right: 0; width: 100% !important; z-index: 9999 !important; background: transparent !important; box-shadow: none !important; display: flex; justify-content: center; padding: 0 20px; transition: background-color .25s ease, box-shadow .25s ease, backdrop-filter .25s ease; }
.navbar.nav-visible { background: rgba(255,255,255,0.95) !important; backdrop-filter: saturate(160%) blur(6px); box-shadow: 0 6px 20px rgba(0,0,0,0.08) !important; }
.navbar-content { display: flex; justify-content: space-between; align-items: center; width: 100%; max-width: 1400px; padding: 0 40px; }
.navbar-brand { display: flex; font-size: 28px; font-weight: bold; color: inherit; text-decoration: none; transition: color .2s ease, text-shadow .2s ease; gap: 10px; }
.navbar-brand img { height: 40px; border-radius: 45px; }
.navbar:not(.nav-visible) .navbar-brand, .navbar:not(.nav-visible) .nav-link { color: #ffffff; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
.navbar.nav-visible .navbar-brand, .navbar.nav-visible .nav-link { color: #2d4a1f; text-shadow: none; }
.menu-links { display: flex; gap: 20px; }
.menu-links .nav-link { display: flex; align-items: center; padding: 10px 20px; color: inherit; text-decoration: none; font-size: 16px; font-weight: 500; transition: all 0.3s ease; border-radius: 5px; }
.menu-links .nav-link:hover { background: rgba(61, 95, 42, 0.1); }
.contact-link { background-color: #3d5f2a !important; color: #ffffff !important; border-radius: 25px; text-shadow: none !important; }
.contact-link:hover { background-color: #2d4a1f !important; transform: translateY(-2px); }
.menu-toggle { display: none; cursor: pointer; font-size: 30px; background: none; border: none; color: inherit; }

/**** Hero Landing ****/
.home-landing { position: relative; width: 100%; height: 100vh; overflow: hidden; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, rgba(45, 74, 31, 0.9) 0%, rgba(61, 95, 42, 0.85) 50%, rgba(74, 124, 47, 0.9) 100%); }
.home-background { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('images/home-landing.jpg') center/cover; opacity: 0.25; z-index: 1; }
.home-motto { position: relative; z-index: 2; text-align: center; color: #ffffff; padding: 0 40px; max-width: 1000px; }
.home-motto h1 { font-size: 4rem; margin-bottom: 30px; font-weight: 700; text-shadow: 0 4px 8px rgba(0,0,0,0.3); line-height: 1.2; }
.home-motto p { font-size: 1.5rem; margin-bottom: 40px; text-shadow: 0 2px 4px rgba(0,0,0,0.3); line-height: 1.6; }
.hero-cta-button { background-color: #ffffff; color: #2d4a1f; padding: 18px 50px; border-radius: 50px; border: none; text-decoration: none; font-size: 1.2rem; font-weight: bold; transition: all 0.3s ease; display: inline-block; box-shadow: 0 6px 20px rgba(0,0,0,0.3); cursor: pointer; }
.hero-cta-button:hover { background-color: #f0f0f0; transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0,0,0,0.4); }

/**** Main Content ****/
.main-content { background-color: #ffffff; width: 100%; }
.section-header { text-align: center; padding: 80px 20px 40px; background-color: #ffffff; }
.section-header h1 { font-size: 3rem; color: #2d4a1f; margin-bottom: 20px; font-weight: 700; }
.section-header p { font-size: 1.2rem; color: #666; max-width: 800px; margin: 0 auto; }

/**** Carousel ****/
.card-carousel-wrapper { position: relative; width: 100%; overflow: visible; display: flex; justify-content: center; align-items: center; padding: 100px 0; background: linear-gradient(to bottom, #ffffff 0%, #f8f9f8 100%); }
.card-carousel { position: relative; width: 100%; max-width: 960px; height: 480px; display: flex; justify-content: center; align-items: center; }
.specialty-card { position: absolute; width: 350px; height: 450px; background: linear-gradient(135deg, #3d5f2a 0%, #4a7c2f 100%); border-radius: 20px; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2); transition: transform 0.6s ease, opacity 0.6s ease, z-index 0.6s ease; opacity: 0.5; transform: scale(0.85); z-index: 1; display: flex; flex-direction: column; overflow: hidden; }
.specialty-card-image { width: 100%; height: 200px; background-size: cover; background-position: center; }
.specialty-card-body { padding: 30px; color: white; text-align: center; flex: 1; display: flex; flex-direction: column; justify-content: center; }
.specialty-card-body h3 { font-size: 1.8rem; margin-bottom: 15px; font-weight: 700; }
.specialty-card-body p { font-size: 1rem; line-height: 1.6; }
.learn-more-btn { display: inline-block; margin-top: 15px; padding: 8px 20px; background: rgba(255, 255, 255, 0.2); border-radius: 20px; font-weight: 600; font-size: 0.9rem; transition: all 0.3s ease; }
.specialty-card:hover .learn-more-btn { background: rgba(255, 255, 255, 0.3); transform: translateX(5px); }
.specialty-card.center { transform: scale(1.1); opacity: 1; z-index: 3; box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3); }
.specialty-card.left { transform: translateX(-240px) scale(0.9); z-index: 2; opacity: 0.7; }
.specialty-card.right { transform: translateX(240px) scale(0.9); z-index: 2; opacity: 0.7; }
.carousel-controls { position: absolute; width: 100%; top: 50%; display: flex; justify-content: space-between; transform: translateY(-50%); padding: 0 20px; z-index: 5; pointer-events: none; }
.carousel-controls button { background-color: rgba(45, 74, 31, 0.8); color: #fff; border: none; font-size: 32px; padding: 15px 20px; border-radius: 50%; cursor: pointer; transition: all 0.3s ease; pointer-events: all; }
.carousel-controls button:hover { background-color: #2d4a1f; transform: scale(1.1); }

/**** About Section ****/
.about-section { display: flex; padding: 80px; gap: 60px; background-color: #ffffff; align-items: center; }
.about-left { flex: 1; display: flex; justify-content: center; }
.about-left img { width: 100%; max-width: 450px; border-radius: 20px; box-shadow: 0 10px 40px rgba(45, 74, 31, 0.3); }
.about-right { flex: 1; }
.about-right h2 { font-size: 2.5rem; color: #2d4a1f; margin-bottom: 30px; font-weight: 700; }
.about-right p { font-size: 1.1rem; line-height: 1.8; margin-bottom: 20px; color: #555; }
.credentials-box { background: linear-gradient(135deg, #3d5f2a 0%, #4a7c2f 100%); padding: 30px; border-radius: 15px; color: white; margin-top: 30px; }
.credentials-box h3 { margin-bottom: 15px; font-size: 1.5rem; }
.credentials-box p { margin-bottom: 10px; color: white; }

/**** Sadie Section ****/
.sadie-section { display: flex; padding: 80px; gap: 60px; background-color: #f8f9f8; align-items: center; }
.sadie-left { flex: 1; display: flex; justify-content: center; }
.sadie-left img { width: 100%; max-width: 450px; border-radius: 20px; box-shadow: 0 10px 40px rgba(45, 74, 31, 0.3); }
.sadie-right { flex: 1; }
.sadie-right h2 { font-size: 2.5rem; color: #2d4a1f; margin-bottom: 30px; font-weight: 700; }
.sadie-right p { font-size: 1.1rem; line-height: 1.8; margin-bottom: 20px; color: #555; }
.certification-box { background: #ffffff; padding: 25px; border-radius: 15px; border-left: 4px solid #3d5f2a; margin-top: 20px; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); }
.certification-box h4 { color: #2d4a1f; margin-bottom: 10px; font-size: 1.2rem; }
.certification-box p { font-size: 1rem; line-height: 1.6; margin-bottom: 15px; }
.learn-more-link { color: #3d5f2a; text-decoration: none; font-weight: 600; transition: all 0.3s ease; cursor: pointer; }
.learn-more-link:hover { color: #2d4a1f; text-decoration: underline; }
.cgc-details { display: none; margin-top: 15px; padding-top: 15px; border-top: 1px solid #e9ecef; }
.cgc-details.show { display: block; }

/**** Partnership Section ****/
.partnership-section { display: flex; padding: 80px; gap: 60px; background: linear-gradient(135deg, #f8f9f8 0%, #ffffff 100%); align-items: center; flex-wrap: wrap; }
.partnership-left { flex: 1; min-width: 350px; }
.partnership-left h2 { font-size: 2.8rem; color: #2d4a1f; margin-bottom: 30px; font-weight: 700; line-height: 1.2; }
.partnership-left p { font-size: 1.2rem; line-height: 1.9; color: #555; margin-bottom: 25px; }
.partnership-right { flex: 1; display: flex; justify-content: center; align-items: center; min-width: 350px; }
.partnership-right img { width: 100%; max-width: 500px; border-radius: 20px; box-shadow: 0 15px 50px rgba(45, 74, 31, 0.3); }
.meeting-banner { text-align: center; padding: 50px; background: linear-gradient(135deg, #3d5f2a 0%, #4a7c2f 100%); color: white; margin-top: 60px; border-radius: 20px; width: 100%; }
.meeting-banner h3 { font-size: 2.2rem; margin-bottom: 15px; font-weight: 700; }
.meeting-banner p { font-size: 1.2rem; margin: 0; }

/**** Expertise Tags ****/
.expertise-section { padding: 80px 60px; background-color: #f8f9f8; text-align: center; }
.expertise-section h2 { font-size: 2.5rem; color: #2d4a1f; margin-bottom: 40px; font-weight: 700; }
.expertise-tags { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; max-width: 1200px; margin: 0 auto; }
.tag { background-color: #e8f0e3; color: #2d4a1f; padding: 12px 25px; border-radius: 25px; font-size: 1rem; font-weight: 600; transition: all 0.3s ease; cursor: default; }
.tag:hover { background-color: #3d5f2a; color: white; transform: translateY(-3px); box-shadow: 0 4px 15px rgba(61, 95, 42, 0.3); }

/**** Contact Section ****/
.contact-redesign { padding: 80px 60px; background: linear-gradient(to bottom, #ffffff 0%, #f8f9f8 100%); }
.contact-intro { text-align: center; max-width: 800px; margin: 0 auto 60px; }
.contact-intro h1 { font-size: 3rem; color: #2d4a1f; margin-bottom: 20px; font-weight: 700; }
.contact-intro p { font-size: 1.25rem; color: #666; line-height: 1.8; }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; max-width: 1200px; margin: 0 auto; }
.contact-primary { background: linear-gradient(135deg, #3d5f2a 0%, #4a7c2f 100%); padding: 50px; border-radius: 25px; color: white; box-shadow: 0 15px 50px rgba(61, 95, 42, 0.3); }
.contact-primary h2 { font-size: 2.2rem; margin-bottom: 30px; font-weight: 700; }
.contact-method { margin-bottom: 30px; padding-bottom: 25px; border-bottom: 1px solid rgba(255, 255, 255, 0.2); }
.contact-method:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.contact-method h3 { font-size: 1.1rem; margin-bottom: 10px; opacity: 0.9; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.contact-method p { font-size: 1.4rem; margin: 0; font-weight: 500; }
.contact-method a { color: white; text-decoration: none; transition: all 0.3s ease; }
.contact-method a:hover { text-decoration: underline; }
.primary-cta { margin-top: 35px; }
.primary-cta .cta-button { background: white; color: #2d4a1f; width: 100%; text-align: center; font-size: 1.2rem; padding: 18px; }
.primary-cta .cta-button:hover { background: #f0f0f0; }
.contact-secondary { display: flex; flex-direction: column; gap: 25px; }
.info-tile { background: white; padding: 35px; border-radius: 20px; box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08); transition: all 0.3s ease; }
.info-tile:hover { transform: translateY(-5px); box-shadow: 0 10px 35px rgba(61, 95, 42, 0.15); }
.info-tile h3 { color: #2d4a1f; font-size: 1.5rem; margin-bottom: 20px; font-weight: 700; display: flex; align-items: center; gap: 12px; }
.tile-icon { width: 40px; height: 40px; background: linear-gradient(135deg, #3d5f2a 0%, #4a7c2f 100%); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.info-tile ul { list-style: none; padding: 0; margin: 0; }
.info-tile ul li { padding: 10px 0; color: #555; font-size: 1.05rem; border-bottom: 1px solid #f0f0f0; }
.info-tile ul li:last-child { border-bottom: none; }
.info-tile p { color: #666; line-height: 1.7; margin-bottom: 15px; }
.info-tile .cta-button { margin-top: 15px; width: 100%; text-align: center; }
.psychology-today-link { display: inline-block; margin-top: 15px; color: #3d5f2a; text-decoration: none; font-weight: 600; transition: all 0.3s ease; }
.psychology-today-link:hover { color: #2d4a1f; text-decoration: underline; }
.cta-button { display: inline-block; background: linear-gradient(135deg, #3d5f2a 0%, #4a7c2f 100%); color: white; padding: 15px 40px; border-radius: 50px; text-decoration: none; font-weight: bold; font-size: 1.1rem; transition: all 0.3s ease; margin-top: 20px; border: none; cursor: pointer; }
.cta-button:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(61, 95, 42, 0.4); }

/**** Footer ****/
footer { background-color: #2d4a1f; color: #ffffff; padding: 60px 40px 30px; }
.footer-content { display: flex; justify-content: space-between; flex-wrap: wrap; max-width: 1200px; margin: 0 auto; gap: 40px; }
.footer-section { flex: 1; min-width: 250px; }
.footer-section h3 { font-size: 1.5rem; margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: #ffffff; text-decoration: none; transition: color 0.3s ease; }
.footer-links a:hover { color: #5a9338; }
.footer-copy { text-align: center; margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.2); }

/**** Modal ****/
.contact-modal { display: none; position: fixed; z-index: 10001; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.6); backdrop-filter: blur(5px); }
.contact-modal.show { display: flex; justify-content: center; align-items: center; }
.modal-content { background: linear-gradient(135deg, #ffffff 0%, #f8f9f8 100%); padding: 50px 40px; border-radius: 25px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3); max-width: 500px; width: 90%; position: relative; max-height: 90vh; overflow-y: auto; }
.modal-close { position: absolute; top: 15px; right: 20px; font-size: 32px; font-weight: bold; color: #2d4a1f; cursor: pointer; background: none; border: none; transition: all 0.3s ease; }
.modal-close:hover { color: #3d5f2a; transform: rotate(90deg); }
.modal-header { text-align: center; margin-bottom: 30px; }
.modal-header h2 { color: #2d4a1f; font-size: 2rem; margin-bottom: 10px; }
.modal-header p { color: #666; font-size: 1.1rem; }
.contact-options { display: flex; flex-direction: column; gap: 20px; }
.contact-option { display: flex; align-items: center; padding: 25px; background: white; border-radius: 15px; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); cursor: pointer; transition: all 0.3s ease; text-decoration: none; color: #333; border: 2px solid transparent; }
.contact-option:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(61, 95, 42, 0.3); border-color: #3d5f2a; }
.contact-option-icon { width: 60px; height: 60px; background: linear-gradient(135deg, #3d5f2a 0%, #4a7c2f 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; margin-right: 20px; flex-shrink: 0; }
.contact-option-text { flex: 1; }
.contact-option-text h3 { color: #2d4a1f; font-size: 1.3rem; margin-bottom: 5px; }
.contact-option-text p { color: #666; font-size: 0.95rem; margin: 0; }
.email-form { display: none; padding: 10px 0; }
.email-form.show { display: block; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; color: #2d4a1f; font-weight: 600; margin-bottom: 8px; font-size: 0.95rem; }
.form-group input, .form-group textarea { width: 100%; padding: 12px 15px; border: 2px solid #e9ecef; border-radius: 8px; font-size: 1rem; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; transition: all 0.3s ease; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: #3d5f2a; box-shadow: 0 0 0 3px rgba(61, 95, 42, 0.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-buttons { display: flex; gap: 15px; margin-top: 25px; }
.form-btn { flex: 1; padding: 12px 25px; border: none; border-radius: 8px; font-size: 1rem; font-weight: 600; cursor: pointer; transition: all 0.3s ease; }
.btn-send { background: linear-gradient(135deg, #3d5f2a 0%, #4a7c2f 100%); color: white; }
.btn-send:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(61, 95, 42, 0.4); }
.btn-cancel { background: #e9ecef; color: #2d4a1f; }
.btn-cancel:hover { background: #d3d6d9; }
.success-message { display: none; text-align: center; padding: 30px 0; color: #3d5f2a; }
.success-message.show { display: block; }
.success-message h3 { font-size: 1.8rem; margin-bottom: 10px; }
.success-message p { color: #666; font-size: 1rem; }

/**** Modality Pages ****/
.page-hero { background: linear-gradient(135deg, rgba(45, 74, 31, 0.9) 0%, rgba(61, 95, 42, 0.85) 50%, rgba(74, 124, 47, 0.9) 100%); padding: 150px 20px 100px; text-align: center; color: white; }
.page-hero-content h1 { font-size: 3.5rem; font-weight: 700; margin-bottom: 20px; }
.page-hero-content p { font-size: 1.3rem; max-width: 800px; margin: 0 auto; }
.content-section { padding: 60px 20px; background-color: #ffffff; }
.content-container { max-width: 900px; margin: 0 auto; padding: 0 20px; }
.content-container h2 { color: #2d4a1f; font-size: 2.2rem; margin-top: 50px; margin-bottom: 25px; font-weight: 700; }
.content-container h2:first-of-type { margin-top: 0; }
.content-container h3 { color: #2d4a1f; font-size: 1.5rem; margin-top: 30px; margin-bottom: 15px; font-weight: 600; }
.content-container p { font-size: 1.1rem; line-height: 1.8; color: #555; margin-bottom: 20px; }
.content-container ul { margin: 20px 0; padding-left: 0; }
.benefits-list, .expect-list, .philosophy-list { list-style: none; padding-left: 0; }
.benefits-list li, .expect-list li, .philosophy-list li { padding: 15px 20px; margin-bottom: 12px; background: #f8f9f8; border-left: 4px solid #3d5f2a; border-radius: 8px; font-size: 1.05rem; line-height: 1.6; }
.phases-list { margin: 30px 0; }
.phase-item { background: #f8f9f8; padding: 30px; margin-bottom: 20px; border-radius: 15px; border-left: 4px solid #3d5f2a; }
.phase-item h3 { color: #2d4a1f; font-size: 1.4rem; margin-top: 0; margin-bottom: 15px; }
.phase-item p { margin-bottom: 10px; }
.phase-item em { color: #666; font-size: 0.95rem; }
.cbt-triangle { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 25px; margin: 30px 0; }
.triangle-item { background: linear-gradient(135deg, #3d5f2a 0%, #4a7c2f 100%); padding: 30px; border-radius: 15px; color: white; text-align: center; }
.triangle-item h3 { color: white; font-size: 1.5rem; margin-top: 0; margin-bottom: 15px; }
.triangle-item p { color: white; margin-bottom: 0; }
.techniques-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin: 30px 0; }
.technique-item { background: white; padding: 25px; border-radius: 12px; border: 2px solid #e8f0e3; transition: all 0.3s ease; }
.technique-item:hover { border-color: #3d5f2a; transform: translateY(-5px); box-shadow: 0 5px 20px rgba(61, 95, 42, 0.2); }
.technique-item h3 { color: #2d4a1f; font-size: 1.3rem; margin-top: 0; margin-bottom: 12px; }
.technique-item p { margin-bottom: 0; font-size: 1rem; }
.assumptions-list { background: #f8f9f8; padding: 30px; border-radius: 15px; margin: 30px 0; }
.assumption-item { padding: 12px 0; border-bottom: 1px solid #e9ecef; }
.assumption-item:last-child { border-bottom: none; }
.assumption-item p { margin: 0; font-size: 1.05rem; color: #555; }
.cta-section { margin-top: 60px; padding: 50px; background: linear-gradient(135deg, #f8f9f8 0%, #e8f0e3 100%); border-radius: 20px; text-align: center; }
.cta-section h2 { color: #2d4a1f; margin-top: 0; margin-bottom: 20px; }
.cta-section p { font-size: 1.15rem; margin-bottom: 30px; }
.back-link { display: inline-block; margin-top: 20px; color: #3d5f2a; text-decoration: none; font-weight: 600; transition: all 0.3s ease; }
.back-link:hover { color: #2d4a1f; text-decoration: underline; }

/**** Mobile Responsive ****/
@media (max-width: 768px) {
    .navbar-content { padding: 0 20px; }
    .menu-toggle { display: block; }
    .menu-links { display: none; position: absolute; top: 70px; right: 20px; background-color: rgba(255, 255, 255, 0.98); flex-direction: column; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); border-radius: 15px; overflow: hidden; z-index: 10000; width: 200px; gap: 0; }
    .menu-links.show { display: flex; }
    .menu-links .nav-link { padding: 15px 20px; border-bottom: 1px solid #eee; color: #2d4a1f !important; text-shadow: none !important; }
    .home-motto h1 { font-size: 2.5rem; }
    .home-motto p { font-size: 1.2rem; }
    .section-header h1 { font-size: 2rem; }
    .card-carousel { height: 350px; }
    .specialty-card { width: 280px; height: 380px; }
    .specialty-card.left { transform: translateX(-150px) scale(0.85); }
    .specialty-card.right { transform: translateX(150px) scale(0.85); }
    .about-section, .sadie-section { flex-direction: column; padding: 40px 20px; }
    .partnership-section { flex-direction: column; padding: 40px 20px; }
    .partnership-left, .partnership-right { min-width: 100%; }
    .about-right h2, .sadie-right h2 { font-size: 2rem; }
    .contact-layout { grid-template-columns: 1fr; gap: 30px; }
    .contact-primary { padding: 35px 25px; }
    .content-container { padding: 40px 20px; }
    .page-hero-content h1 { font-size: 2.5rem; }
    .meeting-banner { padding: 30px 20px; }
    .meeting-banner h3 { font-size: 1.8rem; }
    .meeting-banner p { font-size: 1rem; }
}

/**** FONT FAMILY OVERRIDES ****/
/* Headings (h1, h2) use Playfair Display (similar to The Seasons) */
h1, .home-motto h1, .section-header h1, .about-right h2, .sadie-right h2, 
.partnership-left h2, .page-hero-content h1, .content-container h2, 
.contact-intro h1, .contact-primary h2, .modal-header h2 {
    font-family: 'Playfair Display', serif !important;
}

/* Subheadings (h3, h4) use Slabo 27px (similar to Hatton) */
h3, h4, .specialty-card-body h3, .credentials-box h3, .meeting-banner h3,
.content-container h3, .certification-box h4, .contact-method h3,
.contact-option-text h3 {
    font-family: 'Slabo 27px', serif !important;
}

/* Body text uses Belleza - already set in body rule */
/* Ensure all paragraphs and text elements inherit from body */
p, li, span, a, label, input, textarea, button {
    font-family: 'Belleza', sans-serif;
}