/* Base Styles & Reset */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
body { color: #333; line-height: 1.6; background-color: #f4f7f6; }
a { text-decoration: none; color: #1a2942; }

/* Color Palette */
:root {
    --primary-navy: #14233c;
    --primary-teal: #1e9cb1;
    --primary-green: #3ab54a;
    --bg-light: #f4f7f6;
}

/* Buttons */
.btn {
    display: inline-block; background-color: var(--primary-teal); color: white;
    padding: 10px 24px; border-radius: 25px; font-weight: bold;
    transition: background 0.3s ease; border: none; cursor: pointer; text-align: center;
}
.btn:hover { background-color: var(--primary-green); }

/* Header / Navbar */
header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px 5%; background: white; box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky; top: 0; z-index: 1000;
}
.logo-container img { height: 50px; }
.nav-links { display: flex; gap: 25px; align-items: center; }
.nav-links a { font-weight: 600; transition: color 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--primary-teal); }

/* Page Headers (For internal pages) */
.page-header {
    background-color: var(--primary-navy); color: white;
    padding: 60px 5%; text-align: center;
}
.page-header h1 { font-size: 2.5rem; color: var(--primary-teal); }

/* Main Content Sections */
.content-section { padding: 60px 5%; background: white; margin-bottom: 20px; }
.content-section h2 { color: var(--primary-navy); margin-bottom: 20px; font-size: 2rem; }

/* Grids */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }

/* Forms */
input, textarea {
    width: 100%; padding: 12px; margin-bottom: 20px;
    border: 1px solid #ccc; border-radius: 5px; font-family: inherit;
}

/* Footer */
footer {
    background-color: var(--primary-navy); color: white; padding: 40px 5% 20px; margin-top: 40px;
}
.footer-content {
    display: flex; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 20px; margin-bottom: 20px;
}
.footer-logo img { height: 40px; filter: brightness(0) invert(1); }
.footer-links { display: flex; gap: 40px; }
.footer-column h5 { color: var(--primary-teal); margin-bottom: 10px; }
.footer-column a { color: #ccc; display: block; font-size: 0.9rem; margin-bottom: 5px; }
.footer-column a:hover { color: white; }
.copyright { text-align: center; font-size: 0.8rem; color: #aaa; }

/* Responsive */
@media (max-width: 768px) {
    .grid-2, .footer-content { flex-direction: column; grid-template-columns: 1fr; }
    .nav-links { display: none; /* Add mobile menu logic here later */ }
}