:root {
 --primary-color: #0d47a1; /* Deep Blue */
 --primary-dark: #093170;
 --secondary-color: #00aaff; /* Bright Cyan/Blue */
 --text-dark: #212529;
 --text-light: #495057;
 --text-muted: #6c757d;
 --bg-light: #f4f6f8;
 --bg-white: #ffffff;
 --border-color: #dee2e6;
 --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
 --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.07);
 --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.1);
 --radius-sm: 4px;
 --radius-md: 8px;
 --radius-lg: 16px;
 --transition: all 0.3s ease-in-out;
 --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html {
 scroll-behavior: smooth;
}

body {
 font-family: var(--font-main);
 font-size: 16px;
 line-height: 1.7;
 color: var(--text-light);
 background: var(--bg-white);
 -webkit-font-smoothing: antialiased;
}

.container {
 max-width: 1200px;
 margin: 0 auto;
 padding: 0 24px;
}

h1, h2, h3, h4, h5, h6 {
 font-weight: 700;
 line-height: 1.3;
 color: var(--text-dark);
 margin-bottom: 0.75em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }

a {
 color: var(--primary-color);
 text-decoration: none;
 transition: var(--transition);
}
a:hover { color: var(--primary-dark); }

p { margin-bottom: 1.5em; }

ul { list-style-position: inside; }

.page-container {
 padding-top: 70px;
}

/* --- Header --- */
.header {
 position: fixed;
 top: 0;
 left: 0;
 right: 0;
 z-index: 1000;
 background: rgba(255, 255, 255, 0.9);
 backdrop-filter: blur(10px);
 box-shadow: var(--shadow-sm);
 transition: box-shadow 0.3s ease;
}
.header.scrolled { box-shadow: var(--shadow-md); }
.nav {
 height: 70px;
 display: flex;
 align-items: center;
 justify-content: space-between;
}
.nav-logo {
 font-size: 1.25rem;
 font-weight: 700;
 color: var(--text-dark);
}
.nav-links {
 display: flex;
 gap: 32px;
 list-style: none;
}
.nav-links a {
 font-weight: 500;
 color: var(--text-dark);
 padding: 8px 0;
 position: relative;
}
.nav-links a::after {
 content: '';
 position: absolute;
 bottom: 0;
 left: 0;
 width: 0;
 height: 2px;
 background: var(--primary-color);
 transition: var(--transition);
}
.nav-links a:hover::after, .nav-links a.active::after {
 width: 100%;
}

.nav-toggle {
 display: none;
 background: none;
 border: none;
 cursor: pointer;
 z-index: 1001;
}
.nav-toggle span {
 display: block;
 width: 25px;
 height: 2px;
 background: var(--text-dark);
 margin: 6px 0;
 transition: all 0.3s ease;
}

@media (max-width: 768px) {
 .nav-toggle { display: block; }
 .nav-links {
 position: fixed;
 top: 0;
 right: -100%;
 width: 70%;
 height: 100vh;
 background: white;
 flex-direction: column;
 padding: 100px 40px 40px;
 gap: 25px;
 box-shadow: -5px 0 15px rgba(0,0,0,0.1);
 transition: right 0.4s ease-in-out;
 }
 .nav-links.active { right: 0; }
}

/* --- Buttons --- */
.btn {
 display: inline-block;
 padding: 12px 28px;
 font-size: 1rem;
 font-weight: 600;
 border-radius: var(--radius-md);
 cursor: pointer;
 transition: var(--transition);
 text-align: center;
 border: 2px solid transparent;
}
.btn-primary {
 background: var(--primary-color);
 color: white;
}
.btn-primary:hover {
 background: var(--primary-dark);
 transform: translateY(-2px);
 box-shadow: var(--shadow-md);
}
.btn-secondary {
 background: transparent;
 color: var(--primary-color);
 border-color: var(--primary-color);
}
.btn-secondary:hover {
 background: var(--primary-color);
 color: white;
}

/* --- Hero --- */
.hero {
 position: relative;
 min-height: 70vh;
 background-size: cover;
 background-position: center;
 display: flex;
 align-items: center;
 justify-content: center;
 padding: 120px 0;
 text-align: center;
}
.hero::before {
 content: '';
 position: absolute;
 inset: 0;
 background: linear-gradient(rgba(13, 71, 161, 0.6), rgba(9, 49, 112, 0.8));
}
.hero-content {
 position: relative;
 z-index: 1;
 color: white;
}
.hero-content h1 {
 color: white;
 text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.hero-content .section-subtitle {
 color: rgba(255, 255, 255, 0.9);
 max-width: 700px;
 margin: 0 auto;
}
.hero-actions {
 margin-top: 32px;
 display: flex;
 gap: 16px;
 justify-content: center;
 flex-wrap: wrap;
}
.hero .btn-secondary {
 color: white;
 border-color: white;
}
.hero .btn-secondary:hover {
 background: white;
 color: var(--primary-color);
}

/* --- Sections --- */
.section {
 padding: 80px 0;
}
.section.bg-light { background: var(--bg-light); }
.section.pt-0 { padding-top: 0; }
.section-header {
 text-align: center;
 max-width: 700px;
 margin: 0 auto 50px;
}
.page-title { margin-bottom: 24px; }
.section-subtitle.large { font-size: 1.2rem; max-width: 800px; margin: auto; }

/* --- Grids --- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
@media (max-width: 992px) {
 .grid-3 { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
 .grid-2 { grid-template-columns: 1fr; }
}

/* --- Cards --- */
.card {
 background: white;
 border-radius: var(--radius-md);
 box-shadow: var(--shadow-sm);
 transition: var(--transition);
 border: 1px solid var(--border-color);
 overflow: hidden;
 display: flex;
 flex-direction: column;
}
.card:hover { 
 transform: translateY(-5px);
 box-shadow: var(--shadow-lg); 
}
.card-body {
 padding: 24px;
 flex-grow: 1;
}
.card-feature {
 padding: 32px;
 text-align: center;
}
.card-icon {
 width: 64px;
 height: 64px;
 margin: 0 auto 24px;
 background: var(--bg-light);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 color: var(--primary-color);
}
.card-icon svg { width: 32px; height: 32px; }

/* --- Team --- */
.team-card {
 text-align: center;
 padding: 24px;
}
.team-photo {
 width: 120px;
 height: 120px;
 border-radius: 50%;
 margin: 0 auto 20px;
 object-fit: cover;
 box-shadow: var(--shadow-md);
}
.team-name { font-size: 1.2rem; margin-bottom: 4px; }
.team-role { font-weight: 600; color: var(--primary-color); margin-bottom: 12px; }
.team-bio { font-size: 0.9rem; }

/* --- Media Object --- */
.media-object {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 48px;
 align-items: center;
}
.media-object.reverse { grid-template-columns: 1fr 1fr; }
.media-object.reverse .media-visual { grid-column: 2; grid-row: 1; }
.media-object.reverse .media-copy { grid-column: 1; grid-row: 1; }
.media-visual img {
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-lg);
 width: 100%;
 height: auto;
 object-fit: cover;
}
@media (max-width: 992px) {
 .media-object, .media-object.reverse {
 grid-template-columns: 1fr;
 gap: 32px;
 }
 .media-object.reverse .media-visual,
 .media-object.reverse .media-copy {
 grid-column: 1;
 }
}

/* --- Content Article --- */
.content-article { max-width: 800px; }
.content-article h1 { margin-bottom: 16px; }
.content-article .section-subtitle.large { margin-bottom: 40px; }
.content-article h2, .content-article h3 {
 margin-top: 2em;
 margin-bottom: 0.8em;
}
.content-article ul li { margin-bottom: 0.5em; }
.content-banner-image {
 width: 100%;
 height: 350px;
 object-fit: cover;
 border-radius: var(--radius-lg);
 margin-bottom: 40px;
}

/* --- Resource List --- */
.resource-list .resource-item {
 background: var(--bg-white);
 padding: 24px;
 border-radius: var(--radius-md);
 margin-bottom: 16px;
 border: 1px solid var(--border-color);
 transition: var(--transition);
}
.resource-list .resource-item:hover {
 border-color: var(--primary-color);
 box-shadow: var(--shadow-sm);
}
.resource-list .resource-item h3 { margin: 0 0 8px; }
.resource-list .resource-item p { margin: 0; }
.disclaimer-text { font-style: italic; color: var(--text-muted); margin-top: 32px; text-align: center; }
.cookie-table { overflow-x: auto; }
.cookie-table table { width: 100%; border-collapse: collapse; margin: 32px 0; }
.cookie-table th, .cookie-table td { padding: 12px; border: 1px solid var(--border-color); text-align: left;}
.cookie-table th { background: var(--bg-light); }

/* --- Contact Page --- */
.contact-grid {
 display: grid;
 grid-template-columns: 3fr 2fr;
 gap: 48px;
}
.contact-form-container {
 background: white;
 padding: 40px;
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-md);
}
.contact-details .contact-heading { margin-bottom: 24px; }
.contact-card { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-item .contact-icon {
 flex-shrink: 0;
 width: 40px;
 height: 40px;
 border-radius: 50%;
 background: var(--bg-light);
 display: flex;
 align-items: center;
 justify-content: center;
 color: var(--primary-color);
}
.contact-item .contact-icon svg { width: 20px; height: 20px; }
.contact-item h4 { margin: 0 0 4px; font-size: 1rem; color: var(--text-dark); }
.contact-item p, .contact-item a { margin: 0; font-size: 0.95rem; color: var(--text-light); }
.contact-item a:hover { color: var(--primary-dark); }
.map-container {
 width: 100%;
 height: 250px;
 border-radius: var(--radius-md);
 overflow: hidden;
 box-shadow: var(--shadow-md);
 margin-top: 32px;
}
@media (max-width: 992px) {
 .contact-grid { grid-template-columns: 1fr; }
}

/* --- Forms --- */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-weight: 500; margin-bottom: 8px; font-size: 0.9rem; }
.form-control {
 width: 100%;
 padding: 12px 16px;
 font-size: 1rem;
 border: 1px solid var(--border-color);
 border-radius: var(--radius-md);
 transition: var(--transition);
 background: var(--bg-light);
}
.form-control:focus {
 outline: none;
 border-color: var(--primary-color);
 background: white;
 box-shadow: 0 0 0 3px rgba(13, 71, 161, 0.1);
}
textarea.form-control { min-height: 120px; resize: vertical; }
.btn-full { width: 100%; }
.form-consent { display: flex; align-items: flex-start; gap: 10px; }
.form-consent input { margin-top: 5px; }
.form-consent label { font-size: 0.85rem; font-weight: 400; color: var(--text-muted); }

/* --- Footer --- */
.footer {
 background: #1a2a3a;
 color: #a9b3c1;
 padding: 60px 0 30px;
 margin-top: 80px;
}
.footer-grid {
 display: grid;
 grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
 gap: 40px;
 margin-bottom: 40px;
}
.footer-logo {
 font-size: 1.5rem;
 font-weight: 700;
 color: white;
 margin-bottom: 16px;
 display: inline-block;
}
.footer-description {
 font-size: 0.9rem;
 line-height: 1.6;
}
.footer-heading {
 font-size: 1rem;
 font-weight: 600;
 color: white;
 margin-bottom: 20px;
 text-transform: uppercase;
 letter-spacing: 0.5px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
 color: #a9b3c1;
 font-size: 0.9rem;
}
.footer-links a:hover { color: white; }
.footer-contact-item {
 display: flex;
 align-items: flex-start;
 gap: 12px;
 font-size: 0.9rem;
 color: #a9b3c1;
}
.footer-contact-item svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 4px; color: var(--secondary-color); }
.footer-divider {
 height: 1px;
 background: rgba(255, 255, 255, 0.1);
 margin: 40px 0;
}
.footer-bottom {
 display: flex;
 justify-content: space-between;
 align-items: center;
 flex-wrap: wrap;
 gap: 16px;
}
.footer-copyright { font-size: 0.85rem; color: #868e96; }
.footer-legal-links { display: flex; gap: 24px; }
.footer-legal-links a { font-size: 0.85rem; color: #868e96; }
.footer-legal-links a:hover { color: white; }

@media (max-width: 992px) {
 .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 576px) {
 .footer-grid { grid-template-columns: 1fr; }
 .footer-bottom { flex-direction: column; text-align: center; }
}

/* --- Cookie Banner --- */
.cookie-banner {
 position: fixed;
 bottom: 0;
 left: 0;
 right: 0;
 background: #1a2a3a;
 color: white;
 padding: 20px;
 display: none;
 align-items: center;
 justify-content: space-between;
 gap: 20px;
 z-index: 2000;
 box-shadow: 0 -4px 10px rgba(0,0,0,0.2);
}
.cookie-banner p {
 margin: 0;
 font-size: 0.9rem;
}
.cookie-actions {
 display: flex;
 gap: 12px;
}
.cookie-actions button, .cookie-actions a {
 padding: 8px 16px;
 border-radius: var(--radius-sm);
 border: none;
 cursor: pointer;
 font-weight: 600;
 background: var(--secondary-color);
 color: var(--text-dark);
}
.cookie-actions a {
 background: transparent;
 border: 1px solid var(--secondary-color);
 color: white;
}
@media (max-width: 768px) {
 .cookie-banner {
 flex-direction: column;
 text-align: center;
 }
}