/* ------------------- */
/* --- Global Styles & Variables --- */
/* ------------------- */
:root {
    --primary-blue: #0033A0;
    --accent-yellow: #FFD700;
    --accent-green: #008000;
    --dark-text: #333333;
    --light-bg: #F9FAFB; /* A slightly softer grey */
    --white: #FFFFFF;
    --border-color: #EAEAEA;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Lato', sans-serif;
    scroll-behavior: smooth;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: var(--font-body);
    color: var(--dark-text);
    line-height: 1.7;
    font-size: 16px;
    background: var(--white);
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
h1, h2, h3 { font-family: var(--font-heading); color: var(--primary-blue); margin-bottom: 20px; line-height: 1.3; font-weight: 600; }
h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; }
p { margin-bottom: 15px; color: #555; }
a { color: var(--primary-blue); text-decoration: none; }
.section-padding { padding: 100px 0; }
.bg-light { background-color: var(--light-bg); }

.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { margin-bottom: 10px; }
.section-title p { max-width: 700px; margin-left: auto; margin-right: auto; font-size: 1.1rem; color: #666; }
.content-section { max-width: 800px; margin: 0 auto; }

/* ------------------- */
/* --- Buttons --- */
/* ------------------- */
.btn { display: inline-block; padding: 12px 28px; border-radius: 5px; font-weight: bold; text-transform: uppercase; transition: all 0.3s ease; border: 2px solid transparent; font-size: 0.9rem; }
.btn-primary { background-color: var(--accent-yellow); color: var(--dark-text); }
.btn-primary:hover { background-color: #e6c300; transform: translateY(-2px); }
.btn-secondary { background-color: transparent; color: var(--white); border-color: var(--white); }
.btn-secondary:hover { background-color: var(--white); color: var(--primary-blue); transform: translateY(-2px); }

/* ------------------- */
/* --- Header & Navigation --- */
/* ------------------- */
.site-header { background: var(--white); box-shadow: 0 2px 10px rgba(0,0,0,0.08); position: sticky; top: 0; z-index: 1000; }
.site-header .container { display: flex; justify-content: space-between; align-items: center; padding-top: 10px; padding-bottom: 10px; }
.logo { display: flex; align-items: center; text-decoration: none; }
.logo img { height: 70px; }
.logo-text { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; color: var(--primary-blue); margin-left: 15px; }
.main-nav ul { list-style: none; display: flex; }
.main-nav li { margin-left: 35px; }
.main-nav a { color: var(--dark-text); font-weight: bold; padding-bottom: 5px; position: relative; }
.main-nav a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background-color: var(--primary-blue); transition: width 0.3s ease; }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.menu-toggle { display: none; background: none; border: none; font-size: 24px; cursor: pointer; }

/* ------------------- */
/* --- Hero Section --- */
/* ------------------- */
.hero { background: linear-gradient(rgba(0, 51, 160, 0.85), rgba(0, 51, 160, 0.85)), url('../images/hero-background.jpg') no-repeat center center/cover; color: var(--white); text-align: center; padding: 120px 0; }
.hero h1 { color: var(--white); max-width: 800px; margin-left: auto; margin-right: auto; }
/* FIX: Removed opacity for better legibility */
.hero .subtitle { font-size: 1.2rem; max-width: 700px; margin: 0 auto 40px auto; color: var(--white); }
.hero-buttons .btn { margin: 0 10px; }

/* ------------------- */
/* --- Homepage Sections --- */
/* ------------------- */
.core-focus { background: var(--white); }
.focus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.focus-card { text-align: center; padding: 40px 30px; border: 1px solid var(--border-color); border-radius: 8px; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.focus-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.08); }
.focus-icon { height: 60px; margin-bottom: 20px; }

.challenges-detailed .challenge-item { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 80px; }
.challenges-detailed .challenge-item:last-child { margin-bottom: 0; }
.challenges-detailed .challenge-item.reverse .challenge-image { order: 2; }
.challenges-detailed .challenge-item.reverse .challenge-text { order: 1; }
.challenges-detailed .challenge-image img { width: 100%; border-radius: 8px; box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.challenges-detailed .challenge-text h3 { margin-bottom: 15px; }
.challenges-detailed .challenge-text p:last-child { margin-top: 20px; }

.news-section { border-top: 1px solid var(--border-color); }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.news-card { background: var(--white); border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.news-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.news-card img { width: 100%; height: 200px; object-fit: cover; }
.news-content { padding: 25px; flex-grow: 1; display: flex; flex-direction: column; }
.news-date { font-size: 0.8rem; color: #777; margin-bottom: 10px; }
.news-content h3 { font-size: 1.2rem; margin-bottom: 10px; }
.read-more { margin-top: auto; font-weight: bold; color: var(--primary-blue); }

/* ------------------- */
/* --- About & Contact Pages --- */
/* ------------------- */
.page-header { background-color: var(--primary-blue); color: var(--white); text-align: center; padding: 60px 0; }
.page-header h1, .page-header p { color: var(--white); }
.subsection-title { margin-top: 40px; }
.detailed-list, .principles-list { list-style: none; padding-left: 0; }
.detailed-list li, .principles-list li { padding-left: 25px; position: relative; margin-bottom: 15px; }
.detailed-list li::before, .principles-list li::before { content: '✓'; color: var(--accent-green); position: absolute; left: 0; font-weight: bold; }
.principles-list { columns: 2; gap: 30px; }
.team { text-align: center; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 40px; }
.team-member img { width: 150px; height: 150px; border-radius: 50%; object-fit: cover; margin-bottom: 15px; }
.faq-item { border-bottom: 1px solid var(--border-color); }
.faq-question { background: none; border: none; width: 100%; text-align: left; padding: 20px 0; font-size: 1.2rem; font-weight: 600; color: var(--primary-blue); cursor: pointer; position: relative; padding-right: 30px; }
.faq-question::after { content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 1.5rem; }
.faq-question.active::after { content: '−'; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; }
.faq-answer p { padding: 0 0 20px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; align-items: start; }
.contact-info p { margin-bottom: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 5px; font-weight: bold; }
.form-group input, .form-group textarea { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 5px; font-family: var(--font-body); }
.map-section { height: 450px; width: 100%; }
.map-section iframe { width: 100%; height: 100%; }

/* ------------------- */
/* --- Footer --- */
/* ------------------- */
.site-footer { background-color: var(--dark-text); color: #ccc; padding: 60px 0 20px 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; align-items: start; }
.footer-logo { height: 80px; margin-bottom: 15px; }
.footer-widget h4 { color: var(--white); margin-bottom: 15px; }
.footer-widget p, .footer-widget a { color: #ccc; }
.footer-widget ul { list-style: none; }
.footer-widget li { margin-bottom: 8px; }
.copyright { text-align: center; border-top: 1px solid #555; padding-top: 20px; font-size: 0.9rem; }

/* ------------------- */
/* --- Responsive Design --- */
/* ------------------- */
@media (max-width: 992px) {
    .focus-grid, .news-grid { grid-template-columns: 1fr 1fr; }
    .news-grid article:last-child { grid-column: 1 / -1; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-logo-area { grid-column: 1 / -1; }
    .challenges-detailed .challenge-item, .challenges-detailed .challenge-item.reverse { gap: 30px; }
}

@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    .logo img { height: 60px; }
    .logo-text { font-size: 1.5rem; margin-left: 10px; }
    .main-nav { display: none; flex-direction: column; width: 100%; position: absolute; top: 80px; left: 0; background: var(--white); box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
    .main-nav.active { display: flex; }
    .main-nav ul { flex-direction: column; width: 100%; }
    .main-nav li { margin: 0; text-align: center; }
    .main-nav a { display: block; padding: 15px; border-bottom: 1px solid #eee; }
    .main-nav a::after { display: none; }
    .menu-toggle { display: block; }
    .focus-grid, .news-grid, .footer-grid, .contact-grid, .principles-list { grid-template-columns: 1fr; columns: 1; }
    .challenges-detailed .challenge-item, .challenges-detailed .challenge-item.reverse { grid-template-columns: 1fr; }
    .challenges-detailed .challenge-item.reverse .challenge-image { order: 1; }
    .footer-logo-area { text-align: center; }
}