:root {
    --bg-cream: #FAF7EF;
    --text-main: #333333;
    --green-dark: #2A5A3C;
    --green-light: #A3C1AD;
    --green-bright: #68A678;
    --blue-dark: #2C4A73;
    --blue-light: #D4E4F7;
    --orange-dark: #C95A3A;
    --orange-light: #F7DBCB;
    --yellow-light: #FCE8B2;
    --font-hand: 'Caveat', cursive;
    --font-body: 'Nunito', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { background-color: var(--bg-cream); color: var(--text-main); font-family: var(--font-body); line-height: 1.6; scroll-behavior: smooth; }
.container { max-width: 1200px; margin: 0 auto; padding: 20px; }

/* Utilities */
.green-text { color: var(--green-dark); }
.blue-text { color: var(--blue-dark); }
.orange-text { color: var(--orange-dark); }
.hand-heading { font-family: var(--font-hand); font-size: 2.2rem; color: var(--green-dark); }

/* Navigation Bar */
.main-nav {
    background-color: white;
    border-bottom: 3px solid var(--green-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-logo {
    font-family: var(--font-hand);
    font-size: 2rem;
    color: var(--blue-dark);
    text-decoration: none;
    font-weight: 700;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}
.nav-link {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 5px 10px;
    border-radius: 10px;
    transition: background 0.2s, color 0.2s;
}
.nav-link:hover {
    background-color: var(--green-light);
    color: var(--green-dark);
}

/* Original Poster CSS (Condensed for brevity) */
.main-header { text-align: center; margin-bottom: 30px; margin-top: 30px; }
.main-title { font-family: var(--font-hand); font-size: 5rem; color: var(--blue-dark); line-height: 1; letter-spacing: 2px; }
.sub-title { font-family: var(--font-hand); font-size: 2.2rem; font-weight: 700; }
.hero-section { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 40px; gap: 20px; }
.quote-card { background-color: #E8F1EB; border-radius: 20px; padding: 30px 20px; width: 25%; position: relative; border: 2px solid var(--green-light); }
.quote-icon { font-family: serif; font-size: 3rem; color: var(--green-dark); line-height: 0; margin-bottom: 20px; }
.quote-text { font-family: var(--font-hand); font-size: 1.4rem; margin-bottom: 15px; line-height: 1.3;}
.quote-author { font-size: 0.8rem; color: #555; }
.leaf-decor { position: absolute; bottom: -15px; left: -15px; font-size: 2rem; }
.portrait-container { width: 45%; text-align: center; position: relative; }
.portrait-img { width: 100%; max-width: 400px; height: auto; border-radius: 20px; }
.speech-bubble { position: absolute; top: -20px; right: -20px; background: white; border: 2px solid #ccc; border-radius: 20px; padding: 15px; font-family: var(--font-hand); font-size: 1.2rem; width: 200px; box-shadow: 2px 2px 8px rgba(0,0,0,0.1); z-index: 10; line-height: 1.2; }
.what-i-do-card { background: white; border: 2px solid var(--green-dark); border-radius: 20px; width: 28%; overflow: hidden; }
.card-title { font-family: var(--font-hand); font-size: 2rem; color: white; text-align: center; padding: 10px; }
.green-banner { background-color: var(--green-dark); }
.what-i-do-list { list-style: none; padding: 20px; }
.what-i-do-list li { display: flex; align-items: flex-start; margin-bottom: 15px; font-size: 0.95rem; }
.what-i-do-list .icon { font-size: 1.5rem; margin-right: 15px; }
.accreditation-banner { background-color: #E8F1EB; border: 2px solid var(--green-dark); border-radius: 30px; text-align: center; padding: 15px; font-family: var(--font-body); font-weight: 700; font-size: 1.2rem; color: var(--green-dark); margin: 40px auto; width: 80%; }
.safe-space-section { margin-bottom: 40px; }
.section-title { font-family: var(--font-hand); font-size: 3rem; text-align: center; margin-bottom: 30px; color: var(--text-main); }
.safe-space-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.ss-card { text-align: center; background: white; padding: 20px; border-radius: 20px; border: 1px dashed #ccc; transition: transform 0.3s; }
.ss-card:hover { transform: translateY(-5px); box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.ss-title { font-family: var(--font-body); font-size: 1.1rem; margin-bottom: 10px; font-weight: 700; }
.ss-img { width: 100%; height: 180px; object-fit: contain; margin-bottom: 15px; }
.info-panels-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.info-card { background: white; border-radius: 20px; position: relative; padding-bottom: 20px; border: 2px solid transparent; }
.blue-card { border-color: var(--blue-dark); }
.green-card { border-color: var(--green-dark); }
.orange-card { border-color: var(--orange-dark); }
.panel-title { font-family: var(--font-hand); font-size: 1.8rem; color: white; text-align: center; padding: 10px; border-radius: 16px 16px 0 0; margin-bottom: 20px; }
.blue-bg { background-color: var(--blue-dark); }
.green-bg { background-color: var(--green-dark); }
.orange-bg { background-color: var(--orange-dark); }
.info-list, .who-list, .practical-list { list-style: none; padding: 0 20px; }
.info-list li, .who-list li, .practical-list li { display: flex; align-items: flex-start; margin-bottom: 12px; font-size: 0.9rem; }
.info-list .icon, .who-list .icon, .practical-list .icon { font-size: 1.3rem; margin-right: 12px; }
.intro-text { padding: 0 20px; font-size: 0.9rem; margin-bottom: 10px; }
.disclaimer-box { background-color: white; border: 1px dashed var(--green-light); border-radius: 10px; padding: 15px; margin: 0 auto; font-size: 0.85rem; color: #555; max-width: 800px; text-align: center; }
.plant-decor { position: absolute; bottom: -20px; left: -20px; font-size: 3rem; }

/* NEW SECTIONS */
.section-divider { border: 0; height: 2px; background-image: linear-gradient(to right, transparent, var(--green-light), transparent); margin: 60px 0; }
.new-section { padding-top: 40px; margin-bottom: 60px; }

/* About Me (Tabs) */
.bio-container { max-width: 800px; margin: 0 auto 40px; text-align: center; font-size: 1.1rem; }
.bio-text { margin-bottom: 15px; }
.interactive-tabs { max-width: 900px; margin: 0 auto; background: white; border-radius: 20px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); overflow: hidden; border: 2px solid var(--green-light); }
.tab-buttons { display: flex; background: var(--bg-cream); border-bottom: 2px solid var(--green-light); }
.tab-btn { flex: 1; padding: 15px; border: none; background: transparent; font-family: var(--font-body); font-weight: 700; font-size: 1.1rem; cursor: pointer; transition: 0.3s; color: #666; }
.tab-btn:hover { background: var(--green-light); color: var(--green-dark); }
.tab-btn.active { background: white; color: var(--green-dark); border-bottom: 3px solid var(--green-dark); }
.tab-content-container { padding: 30px; }
.tab-pane { display: none; animation: fadeIn 0.5s ease; }
.tab-pane.active { display: block; }
.tab-pane h3 { font-family: var(--font-hand); font-size: 2rem; color: var(--blue-dark); margin-bottom: 15px; }
.tab-pane ul { list-style-position: inside; margin-left: 10px; line-height: 1.8; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* Benefits Expansion Cards */
.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 900px; margin: 0 auto; }
.benefit-card { background: white; border: 2px solid var(--blue-light); border-radius: 15px; cursor: pointer; transition: 0.3s; overflow: hidden; }
.benefit-card:hover { border-color: var(--blue-dark); transform: translateY(-3px); }
.benefit-front { padding: 20px; text-align: center; }
.benefit-front .icon { font-size: 3rem; display: block; margin-bottom: 10px; }
.benefit-front h4 { font-size: 1.2rem; color: var(--blue-dark); margin-bottom: 5px; }
.click-hint { font-size: 0.8rem; color: #888; font-style: italic; }
.benefit-back { padding: 0 20px; max-height: 0; opacity: 0; background-color: var(--blue-light); transition: 0.4s ease; text-align: center; }
.benefit-card.expanded .benefit-back { max-height: 150px; opacity: 1; padding: 20px; }
.benefit-card.expanded .click-hint { display: none; }



/* Testimonials */
.testimonial-bubble { max-width: 700px; margin: 0 auto; background: white; border: 3px solid var(--orange-light); border-radius: 30px 30px 30px 5px; padding: 40px; position: relative; font-family: var(--font-hand); font-size: 1.5rem; line-height: 1.4; color: var(--text-main); box-shadow: 5px 5px 0px var(--orange-light); }
.testimonial-bubble .author { text-align: right; font-family: var(--font-body); font-size: 1rem; font-weight: 700; margin-top: 20px; color: var(--orange-dark); }

/* Contact Form */
.contact-wrapper { display: flex; max-width: 900px; margin: 0 auto; background: white; border-radius: 20px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.05); border: 2px solid var(--green-light); }
.contact-info-side { background: var(--green-light); padding: 40px; width: 40%; color: var(--green-dark); }
.contact-info-side p { margin-bottom: 15px; }
.contact-methods { margin-top: 20px; font-size: 1.1rem; }
.note-box { background: rgba(255,255,255,0.5); padding: 15px; border-radius: 10px; margin-top: 20px; font-size: 0.9rem; }
.contact-form-side { padding: 40px; width: 60%; }
.styled-form .form-group { margin-bottom: 20px; }
.styled-form label { display: block; font-weight: 700; margin-bottom: 5px; color: var(--blue-dark); }
.styled-form input, .styled-form textarea { width: 100%; padding: 12px; border: 2px solid #ddd; border-radius: 10px; font-family: var(--font-body); transition: border-color 0.3s; }
.styled-form input:focus, .styled-form textarea:focus { outline: none; border-color: var(--green-dark); }
.submit-btn { background: var(--orange-dark); color: white; border: none; padding: 12px 25px; border-radius: 25px; font-size: 1.1rem; font-weight: 700; cursor: pointer; transition: 0.3s; display: block; width: 100%; }
.submit-btn:hover { background: #b04e30; transform: translateY(-2px); }

/* Footer */
.main-footer { border-top: 2px solid var(--green-dark); padding-top: 30px; margin-top: 50px; }
.footer-content { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.footer-profile { display: flex; align-items: center; gap: 20px; }
.footer-avatar { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; border: 2px solid var(--green-dark); }
.footer-contact { text-align: right; }
.phone-number { font-size: 1.8rem; color: var(--green-dark); margin-bottom: 5px; }
.accreditation-badges { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; font-size: 0.8rem; margin-bottom: 30px; }
.footer-banner { background-color: var(--green-dark); color: white; text-align: center; padding: 15px; font-family: var(--font-hand); font-size: 1.8rem; border-radius: 10px; }

/* Responsive */
@media (max-width: 900px) {
    .nav-container { flex-direction: column; text-align: center; }
    .nav-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 15px; }
    .nav-link { font-size: 1rem; padding: 5px; }
    .hero-section, .info-panels-grid, .contact-wrapper { flex-direction: column; align-items: center; }
    .quote-card, .portrait-container, .what-i-do-card { width: 100%; margin-bottom: 20px; }
    .speech-bubble { position: relative; top: 0; right: 0; margin: 0 auto 15px auto; width: 90%; max-width: 300px; }
    .safe-space-grid { grid-template-columns: 1fr 1fr; }
    .info-panels-grid, .contact-wrapper { display: flex; flex-direction: column; }
    .contact-info-side, .contact-form-side { width: 100%; }
    .footer-content { flex-direction: column; text-align: center; gap: 20px; }
    .footer-contact { text-align: center; }
    .tab-buttons { flex-direction: column; }
}

@media (max-width: 500px) {
    .safe-space-grid, .benefits-grid { grid-template-columns: 1fr; }
}
