:root {
    --primary-color: {{PRIMARY_COLOR}};
    --secondary-color: {{SECONDARY_COLOR}};
    --accent-color: {{ACCENT_COLOR}};
    --text-dark: #222222;
    --bg-light: #f8f9fa;
    --border-color: #dddddd;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Helvetica Neue', Arial, sans-serif; line-height: 1.6; color: var(--text-dark); background-color: #ffffff; }

.container { width: 90%; max-width: 1100px; margin: 0 auto; }

/* Header & Nav - Strictly Horizontal Alignment */
.site-header { background: #ffffff; border-bottom: 2px solid var(--border-color); padding: 15px 0; position: sticky; top: 0; z-index: 1000; }
.header-container { display: flex; flex-direction: row; justify-content: space-between; align-items: center; }
.logo img { max-height: 45px; width: auto; display: block; }

.main-nav ul { display: flex; flex-direction: row; list-style: none; gap: 25px; align-items: center; }
.main-nav li { display: inline-block; }
.main-nav a { text-decoration: none; color: var(--text-dark); font-weight: 600; font-size: 15px; }
.main-nav a:hover { color: var(--primary-color); }

/* Buttons */
.btn { display: inline-block; padding: 10px 20px; border-radius: 4px; text-decoration: none; font-weight: bold; cursor: pointer; border: none; }
.btn-primary { background-color: var(--primary-color); color: #ffffff; }
.btn-secondary { background-color: var(--secondary-color); color: #ffffff; margin-left: 10px; }
.btn-donate { background-color: var(--secondary-color); color: #ffffff; text-transform: uppercase; font-size: 14px; }

/* Hero */
.hero { background: linear-gradient(135deg, var(--bg-light) 60%, #ffffff 40%); padding: 60px 0; }
.hero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: center; }
.office-badge { background-color: var(--accent-color); color: var(--text-dark); font-weight: bold; padding: 4px 10px; border-radius: 3px; font-size: 12px; text-transform: uppercase; display: inline-block; margin-bottom: 15px; }
.hero h1 { font-size: 48px; color: var(--primary-color); line-height: 1.1; margin-bottom: 15px; }
.tagline { font-size: 20px; color: #555555; margin-bottom: 25px; }
.hero-image img { width: 100%; max-width: 380px; border-radius: 8px; box-shadow: 0 10px 20px rgba(0,0,0,0.1); display: block; margin: 0 auto; }

/* Sections General */
.section { padding: 60px 0; }
.section h2 { font-size: 32px; color: var(--primary-color); text-align: center; margin-bottom: 10px; }
.section-subtitle { text-align: center; color: #666; margin-bottom: 40px; }

/* About Section */
.about-section { background-color: #ffffff; }
.lead-vision { font-size: 20px; font-style: italic; text-align: center; max-width: 800px; margin: 0 auto 40px auto; color: #444; }
.bio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.bio-card { background: var(--bg-light); padding: 25px; border-left: 4px solid var(--primary-color); border-radius: 0 6px 6px 0; }
.bio-card h3 { color: var(--primary-color); margin-bottom: 10px; }

/* Events Section */
.events-section { background-color: var(--bg-light); }
.events-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 900px; margin: 0 auto; }
.event-card { background: #ffffff; border: 1px solid var(--border-color); border-radius: 6px; padding: 20px; display: flex; gap: 20px; align-items: center; box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
.event-date { background: var(--primary-color); color: #ffffff; text-align: center; padding: 12px 18px; border-radius: 6px; min-width: 70px; }
.event-date .month { font-size: 12px; font-weight: bold; text-transform: uppercase; display: block; }
.event-date .day { font-size: 24px; font-weight: bold; line-height: 1; }
.event-details h3 { font-size: 18px; color: var(--primary-color); margin-bottom: 5px; }
.event-meta { font-size: 13px; font-weight: bold; color: var(--secondary-color); margin-bottom: 8px; }

/* FAQ Section */
.faq-section { background-color: #ffffff; }
.faq-list { max-width: 850px; margin: 0 auto; }
.faq-item { background: var(--bg-light); border: 1px solid var(--border-color); border-radius: 4px; margin-bottom: 12px; padding: 15px; }
.faq-item summary { font-weight: bold; cursor: pointer; color: var(--primary-color); }
.faq-item p { margin-top: 10px; color: #333333; }

/* Footer */
.site-footer { background-color: #111111; color: #ffffff; padding: 40px 0 20px 0; text-align: center; }
.fppc-box { border: 2px solid #ffffff; display: inline-block; padding: 10px 20px; font-weight: bold; letter-spacing: 1px; font-size: 13px; margin-bottom: 20px; }
.copyright { font-size: 13px; color: #888888; margin-bottom: 8px; }
.platform-credit { font-size: 12px; color: #666666; }
.platform-credit a { color: #888888; text-decoration: none; }
.platform-credit a:hover { text-decoration: underline; }

@media (max-width: 768px) {
    .hero-grid, .bio-grid, .events-grid { grid-template-columns: 1fr; }
    .header-container { flex-direction: column; gap: 15px; }
}