:root {
    --orange: #FF8C00; /* Dark Orange */
    --light-orange: #FFA500;
    --dark-grey: #333333;
    --light-bg: #f9f9f9;
    --white: #ffffff;
    
    --font-head: 'Quicksand', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --radius: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    background-color: var(--light-bg);
    color: var(--dark-grey);
    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-head); font-size: 1.8rem; font-weight: 700; color: var(--dark-grey); }
.orange { color: var(--orange); }
.dot { color: var(--orange); }

.help-nav ul { display: flex; gap: 30px; list-style: none; align-items: center; }
.help-nav a { font-weight: 600; color: var(--dark-grey); }
.help-nav a:hover, .help-nav a.active { color: var(--orange); }

.btn-orange { background-color: var(--orange); color: var(--white) !important; padding: 10px 25px; border-radius: 50px; font-weight: bold; }
.btn-orange:hover { background-color: var(--light-orange); transform: translateY(-2px); }

/* Mobile Menu */
.mobile-toggle { display: none; background: none; border: none; font-size: 1.8rem; cursor: pointer; color: var(--orange); }
.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(--orange); }
.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; }

/* Hero */
.hero-help { padding: 60px 0; background-color: var(--white); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }

.badge { background-color: #fff3e0; color: var(--orange); padding: 5px 15px; border-radius: 20px; font-weight: 700; font-size: 0.8rem; margin-bottom: 20px; display: inline-block; }
.hero-text h1 { font-family: var(--font-head); font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px; color: var(--dark-grey); }
.hero-text p { font-size: 1.2rem; color: #666; margin-bottom: 30px; }

.search-box { display: flex; gap: 10px; max-width: 500px; }
.search-box input { flex: 1; padding: 12px 20px; border: 2px solid #eee; border-radius: 50px; outline: none; transition: 0.3s; }
.search-box input:focus { border-color: var(--orange); }
.search-box button { background-color: var(--dark-grey); color: var(--white); border: none; padding: 0 25px; border-radius: 50px; font-weight: bold; cursor: pointer; }
.search-box button:hover { background-color: var(--orange); }

.hero-img img { width: 100%; border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }

/* Topics Grid */
.section-padding { padding: 80px 0; }
.section-head { text-align: center; margin-bottom: 60px; }
.section-head h2 { font-family: var(--font-head); font-size: 2.5rem; margin-bottom: 10px; }
.orange-line { width: 60px; height: 4px; background-color: var(--orange); margin: 0 auto; border-radius: 2px; }

.topic-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.topic-card { background: var(--white); padding: 30px 20px; border-radius: var(--radius); text-align: center; transition: 0.3s; border: 1px solid #eee; }
.topic-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); border-color: var(--orange); }
.icon { font-size: 3rem; margin-bottom: 15px; }
.topic-card h3 { font-family: var(--font-head); margin-bottom: 10px; color: var(--orange); }

/* About */
.page-header { background-color: var(--dark-grey); color: var(--white); padding: 60px 0; text-align: center; border-radius: 0 0 50% 50% / 20px; }
.page-header h1 { font-family: var(--font-head); font-size: 3rem; }

.about-flex { display: flex; gap: 60px; align-items: center; }
.text-block h2 { font-family: var(--font-head); font-size: 2rem; color: var(--orange); margin-bottom: 20px; }
.values-list { list-style: none; margin-top: 20px; font-weight: 600; }
.values-list li { margin-bottom: 10px; }
.values-list li::before { content: "✔"; color: var(--orange); margin-right: 10px; }
.img-block img { width: 100%; border-radius: var(--radius); }

/* Testimonials */
.success-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.success-card { background: var(--white); padding: 30px; border-radius: var(--radius); box-shadow: 0 5px 15px rgba(0,0,0,0.03); text-align: center; }
.avatar { font-size: 3rem; margin-bottom: 15px; }
.success-card h3 { font-family: var(--font-head); margin-bottom: 10px; }
.success-card p { font-style: italic; color: #666; margin-bottom: 15px; }
.user { font-weight: bold; color: var(--orange); }

/* Contact Form */
.contact-box { display: flex; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.info-panel { flex: 1; background-color: var(--orange); color: var(--white); padding: 50px; }
.info-panel h2 { font-family: var(--font-head); margin-bottom: 20px; }
.faq-mini strong { display: block; margin-top: 20px; margin-bottom: 5px; }

.friendly-form { flex: 1.5; padding: 50px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 5px; font-weight: 600; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 8px; font-family: var(--font-body); transition: 0.3s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--orange); outline: none; }
.submit-btn { width: 100%; background-color: var(--dark-grey); color: var(--white); border: none; padding: 15px; border-radius: 8px; font-weight: bold; cursor: pointer; transition: 0.3s; }
.submit-btn:hover { background-color: var(--orange); }

/* Legal */
.legal-text { max-width: 800px; margin: 0 auto; background: var(--white); padding: 50px; border-radius: var(--radius); }
.legal-text h1 { font-family: var(--font-head); text-align: center; }
.legal-text h3 { color: var(--orange); margin-top: 30px; margin-bottom: 10px; font-family: var(--font-head); }

/* Footer */
.help-footer { background-color: var(--white); padding: 40px 0; border-top: 1px solid #eee; text-align: center; margin-top: auto; }
.f-brand { font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; color: var(--dark-grey); margin-bottom: 15px; }
.f-links a { margin: 0 15px; color: #666; font-weight: 600; }
.f-links a:hover { color: var(--orange); }
.copyright { margin-top: 20px; font-size: 0.8rem; color: #aaa; }

@media (max-width: 900px) {
    .help-nav { display: none; }
    .mobile-toggle { display: block; }
    .hero-grid, .topic-grid, .about-flex, .success-grid, .contact-box { grid-template-columns: 1fr; flex-direction: column; }
    .hero-text h1 { font-size: 2.5rem; }
    .search-box { flex-direction: column; }
    .search-box button { width: 100%; }
}