:root {
    --emerald: #2ecc71;
    --dark-green: #27ae60;
    --text-dark: #2c3e50;
    --light-bg: #ecf0f1;
    --white: #ffffff;
    
    --font-heading: 'Roboto Slab', serif;
    --font-body: 'Open Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    background-color: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.6;
}

.container { width: 90%; max-width: 1100px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Header */
.help-header { background-color: var(--white); padding: 20px 0; box-shadow: 0 4px 6px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 1000; }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; color: var(--text-dark); }
.green { color: var(--emerald); }

.help-nav ul { display: flex; gap: 30px; list-style: none; align-items: center; }
.help-nav a { font-weight: 600; color: var(--text-dark); }
.help-nav a:hover, .help-nav a.active { color: var(--emerald); }

.btn-green { background-color: var(--emerald); color: var(--white) !important; padding: 10px 25px; border-radius: 20px; font-weight: bold; }
.btn-green:hover { background-color: var(--dark-green); transform: translateY(-2px); }

/* Mobile Menu */
.mobile-toggle { display: none; background: none; border: none; font-size: 1.8rem; cursor: pointer; color: var(--emerald); }
.mobile-menu { position: fixed; top: 0; right: -100%; width: 250px; height: 100%; background: var(--white); z-index: 2000; padding: 40px; display: flex; flex-direction: column; transition: 0.3s; border-left: 4px solid var(--emerald); }
.mobile-menu.active { right: 0; }
.close-menu { align-self: flex-end; font-size: 1.5rem; border: none; background: none; cursor: pointer; margin-bottom: 20px; }
.mobile-menu a { padding: 10px 0; border-bottom: 1px solid #eee; font-weight: 600; color: var(--text-dark); }

/* Hero */
.hero-help {
    height: 500px; background-size: cover; background-position: center; position: relative;
}
.hero-overlay {
    width: 100%; height: 100%; background: rgba(44, 62, 80, 0.7); /* Dark overlay */
    display: flex; align-items: center; justify-content: center; text-align: center;
}
.hero-content { color: var(--white); max-width: 700px; padding: 20px; }
.hero-content h1 { font-family: var(--font-heading); font-size: 3rem; margin-bottom: 20px; }
.hero-content p { font-size: 1.2rem; margin-bottom: 30px; opacity: 0.9; }

.hero-buttons a { margin: 0 10px; padding: 12px 30px; border-radius: 5px; font-weight: bold; display: inline-block; }
.btn-primary { background-color: var(--emerald); color: var(--white); }
.btn-primary:hover { background-color: var(--dark-green); }
.btn-text { border: 2px solid var(--white); color: var(--white); }
.btn-text:hover { background-color: var(--white); color: var(--text-dark); }

/* Info Grid */
.section-padding { padding: 80px 0; }
.intro-text { text-align: center; margin-bottom: 60px; }
.intro-text h2 { font-family: var(--font-heading); color: var(--text-dark); font-size: 2.2rem; }
.green-line { width: 60px; height: 4px; background-color: var(--emerald); margin: 15px auto; }

.help-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.help-card { background: var(--white); padding: 40px 20px; text-align: center; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: 0.3s; }
.help-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.icon { font-size: 3rem; margin-bottom: 20px; }
.help-card h3 { font-family: var(--font-heading); margin-bottom: 10px; color: var(--dark-green); }

/* About */
.page-title { background-color: var(--emerald); color: var(--white); padding: 60px 0; text-align: center; }
.page-title h1 { font-family: var(--font-heading); font-size: 2.5rem; }

.about-wrapper { display: flex; gap: 50px; align-items: center; }
.text-block { flex: 1; }
.text-block h2 { font-family: var(--font-heading); color: var(--dark-green); margin-bottom: 20px; }
.values-list { list-style: none; margin-top: 20px; }
.values-list li { margin-bottom: 10px; font-weight: bold; }
.values-list li::before { content: "♥"; color: var(--emerald); margin-right: 10px; }
.image-block { flex: 1; }
.image-block img { width: 100%; border-radius: 10px; }

/* Testimonials (Stories) */
.stories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.story-item { background: var(--white); padding: 30px; border-radius: 10px; position: relative; border-left: 5px solid var(--emerald); }
.quote-icon { font-size: 3rem; color: #eee; position: absolute; top: 10px; right: 20px; font-family: serif; }
.story-item h3 { font-family: var(--font-heading); margin-bottom: 15px; color: var(--text-dark); }
.story-item p { font-style: italic; color: #555; margin-bottom: 20px; }
.author { font-size: 0.9rem; color: var(--emerald); font-weight: bold; }

/* Contact Form */
.contact-card { display: flex; background: var(--white); border-radius: 10px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.card-info { flex: 1; background-color: var(--text-dark); color: var(--white); padding: 50px; }
.card-info h2 { font-family: var(--font-heading); margin-bottom: 20px; color: var(--emerald); }
.note { font-size: 0.9rem; background: rgba(255,255,255,0.1); padding: 10px; border-radius: 5px; margin-bottom: 30px; }
.contact-details p { margin-bottom: 10px; }

.clean-form { flex: 1.5; padding: 50px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 5px; font-weight: bold; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 10px; border: 1px solid #ddd; border-radius: 5px; }
.submit-btn { background-color: var(--emerald); color: var(--white); border: none; padding: 15px 30px; border-radius: 5px; font-weight: bold; cursor: pointer; width: 100%; transition: 0.3s; }
.submit-btn:hover { background-color: var(--dark-green); }

/* Legal (Privacy) */
.privacy-content { max-width: 800px; margin: 0 auto; background: var(--white); padding: 50px; border-radius: 10px; }
.privacy-content h1 { font-family: var(--font-heading); text-align: center; }
.privacy-content h3 { color: var(--dark-green); margin-top: 30px; margin-bottom: 10px; }

/* Footer */
.help-footer { background-color: var(--white); padding: 40px 0; border-top: 1px solid #eee; text-align: center; margin-top: auto; }
.brand { font-family: var(--font-heading); font-size: 1.5rem; color: var(--text-dark); font-weight: bold; margin-bottom: 15px; }
.f-links { margin-bottom: 20px; }
.f-links a { margin: 0 15px; color: #777; font-size: 0.9rem; }
.f-links a:hover { color: var(--emerald); }
.copyright { color: #aaa; font-size: 0.8rem; }

@media (max-width: 900px) {
    .help-nav { display: none; }
    .mobile-toggle { display: block; }
    .hero-content h1 { font-size: 2.2rem; }
    .hero-buttons { display: flex; flex-direction: column; gap: 10px; }
    .help-grid, .about-wrapper, .stories-grid, .contact-card { grid-template-columns: 1fr; flex-direction: column; }
}