:root {
 --primary-color: #0d2c54;
 --primary-dark: #081f3a;
 --secondary-color: #1c4a8a;
 --accent-color: #3b82f6; 
 --text-dark: #212529;
 --text-light: #495057;
 --text-muted: #6c757d;
 --bg-light: #f8f9fa;
 --bg-white: #ffffff;
 --border-color: #dee2e6;
 --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
 --shadow-md: 0 4px 10px rgba(0, 0, 0, 0.07);
 --shadow-lg: 0 10px 30px 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;
 scroll-padding-top: 80px;
}

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;
}

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

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

a {
 color: var(--secondary-color);
 text-decoration: none;
 transition: var(--transition);
}

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

p {
 margin-bottom: 1rem;
}

ul {
 list-style-position: inside;
 padding-left: 1rem;
 margin-bottom: 1rem;
}
ul li {
 margin-bottom: 0.5rem;
}

img {
 max-width: 100%;
 height: auto;
 display: block;
 object-fit: cover;
}

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

.section {
 padding: 80px 0;
}
.section.pt-0 {
 padding-top: 0;
}
.bg-light {
 background: var(--bg-light);
}
.tc {
 text-align: center;
}

/* Header */
.header {
 position: sticky;
 top: 0;
 left: 0;
 right: 0;
 z-index: 1000;
 background: rgba(255,255,255,0.9);
 backdrop-filter: blur(10px);
 border-bottom: 1px solid var(--border-color);
 transition: var(--transition);
}
.header.scrolled {
 background: rgba(255,255,255,0.98);
 box-shadow: var(--shadow-md);
}
.nav {
 height: 80px;
 display: flex;
 align-items: center;
 justify-content: space-between;
}
.nav-logo {
 font-size: 1.25rem;
 font-weight: 700;
 color: var(--text-dark);
}
.nav-menu {
 display: flex;
 justify-content: center;
 flex-grow: 1;
}
.nav-links {
 display: flex;
 gap: 32px;
 list-style: none;
 padding: 0;
}
.nav-links a {
 font-weight: 500;
 color: var(--text-dark);
 padding: 8px 0;
 position: relative;
}
.nav-links a::after {
 content: '';
 position: absolute;
 bottom: -2px;
 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-actions {
 display: flex;
 align-items: center;
 gap: 1rem;
}
.nav-toggle {
 display: none;
 background: none;
 border: none;
 cursor: pointer;
 padding: 8px;
 z-index: 1100;
}
.nav-toggle span {
 display: block;
 width: 24px;
 height: 2px;
 background: var(--text-dark);
 margin: 6px 0;
 transition: var(--transition);
}

/* Hero */
.hero {
 position: relative;
 min-height: 60vh;
 background-size: cover;
 background-position: center;
 display: flex;
 align-items: center;
 justify-content: center;
 color: var(--bg-white);
 text-align: center;
}
.hero::before {
 content: '';
 position: absolute;
 inset: 0;
 background: linear-gradient(rgba(1, 19, 48, 0.7), rgba(0,0,0,0.5));
}
.hero-content {
 position: relative;
 z-index: 1;
 max-width: 800px;
}
.hero-title {
 color: var(--bg-white);
 font-size: clamp(2.5rem, 6vw, 4rem);
 margin-bottom: 1rem;
}
.hero-subtitle {
 font-size: clamp(1.1rem, 3vw, 1.25rem);
 color: rgba(255,255,255,0.9);
 max-width: 700px;
 margin: 0 auto;
}

/* Page Header */
.page-header-section {
 padding: 60px 0;
 background-color: var(--bg-light);
 text-align: center;
}
.page-title {
 font-size: clamp(2.2rem, 5vw, 3.5rem);
}
.page-subtitle {
 font-size: 1.15rem;
 color: var(--text-muted);
 max-width: 700px;
 margin: 0 auto;
}
.text-center-section {
 min-height: 60vh;
 display: flex;
 align-items: center;
 justify-content: center;
}

/* Sections */
.section-header {
 text-align: center;
 max-width: 750px;
 margin: 0 auto 50px;
}
.section-label {
 display: inline-block;
 background-color: var(--secondary-color);
 color: white;
 padding: 4px 12px;
 border-radius: var(--radius-sm);
 font-size: 0.85rem;
 font-weight: 600;
 margin-bottom: 1rem;
 text-transform: uppercase;
}
.section-title { margin-bottom: 1rem; }
.section-subtitle { font-size: 1.1rem; color: var(--text-muted); }

/* Buttons */
.btn {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 gap: 8px;
 padding: 12px 28px;
 font-size: 1rem;
 font-weight: 600;
 border-radius: var(--radius-md);
 cursor: pointer;
 transition: var(--transition);
 border: 2px solid transparent;
}
.btn-primary {
 background: var(--primary-color);
 color: white;
 border-color: var(--primary-color);
}
.btn-primary:hover {
 background: var(--primary-dark);
 border-color: var(--primary-dark);
 transform: translateY(-2px);
}
.btn-secondary {
 background: transparent;
 color: var(--primary-color);
 border-color: var(--primary-color);
}
.btn-secondary:hover {
 background: var(--primary-color);
 color: white;
}
.cta-buttons {
 margin-top: 2rem;
}

/* Cards */
.grid-3 {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 30px;
}
.card {
 background: var(--bg-white);
 border-radius: var(--radius-md);
 box-shadow: var(--shadow-md);
 transition: var(--transition);
 border: 1px solid var(--border-color);
 display: flex;
 flex-direction: column;
}
.card:hover {
 transform: translateY(-5px);
 box-shadow: var(--shadow-lg);
}
.card-body {
 padding: 24px;
}
.card-title {
 font-size: 1.25rem;
}
.card-text {
 color: var(--text-light);
 flex-grow: 1;
}
.card-image-top {
 height: 200px;
 width: 100%;
 object-fit: cover;
 border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.cards-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
 gap: 24px;
}
.cards-grid .card.article { flex-direction: column; }
.cards-grid .card .card-image.article {
 width: 100%;
 height: 200px;
 border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.cards-grid .card .card-content { padding: 24px; display: flex; flex-direction: column; flex-grow: 1; }
.cards-grid .card h3 { font-size: 1.2rem; }
.cards-grid .card p { flex-grow: 1; }

/* 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: 1; grid-row: 1; }
.media-object.reverse .media-copy { grid-column: 2; }

.media-visual img {
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-lg);
}

.content-body h3 {
 margin-bottom: 1rem;
}
.content-body p, .content-body ul {
 max-width: 800px;
}
.content-body > .section-header p {
 margin-left: auto;
 margin-right: auto;
}

/* Team Section */
.team-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
 gap: 30px;
 justify-content: center;
}
.team-card {
 text-align: center;
 padding: 24px;
 background: var(--bg-light);
 border-radius: var(--radius-md);
 border: 1px solid var(--border-color);
}
.team-photo {
 width: 120px;
 height: 120px;
 border-radius: 50%;
 margin: 0 auto 16px;
 border: 4px solid var(--bg-white);
 box-shadow: var(--shadow-md);
}
.team-name { font-size: 1.25rem; }
.team-title { font-weight: 500; color: var(--secondary-color); margin-bottom: 8px; }
.team-bio { font-size: 0.9rem; color: var(--text-muted); }

/* Contact Page */
.contact-grid {
 display: grid;
 grid-template-columns: 1.5fr 1fr;
 gap: 48px;
}
.contact-heading {
 margin-bottom: 2rem;
 font-size: 1.75rem;
}
.contact-form-wrapper {
 background: var(--bg-white);
 padding: 40px;
 border-radius: var(--radius-md);
 box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-weight: 600; margin-bottom: 8px; color: var(--text-dark); }
.form-control {
 width: 100%;
 padding: 14px 18px;
 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);
 box-shadow: 0 0 0 3px rgba(13, 44, 84, 0.1);
}
textarea.form-control { resize: vertical; min-height: 120px; }
.form-group-checkbox {
 display: flex;
 align-items: flex-start;
 gap: 10px;
 margin-bottom: 20px;
}
.form-group-checkbox input { margin-top: 5px; }
.form-group-checkbox label { font-size: 0.9rem; color: var(--text-muted); font-weight: 400; }
.contact-details-wrapper { padding-top: 10px; }
.contact-info-card {
 display: flex;
 flex-direction: column;
 gap: 24px;
}
.map-container {
 width: 100%;
 height: 450px;
 border-radius: var(--radius-md);
 overflow: hidden;
 box-shadow: var(--shadow-md);
 margin: 40px 0;
}
.map-container iframe { width: 100%; height: 100%; border: none; }

/* Resources List */
.resource-list {
 list-style: none;
 padding: 0;
 max-width: 800px;
 margin: 0 auto;
}
.resource-item {
 background: var(--bg-light);
 border: 1px solid var(--border-color);
 border-radius: var(--radius-md);
 padding: 20px;
 margin-bottom: 16px;
}
.resource-item h3 {
 margin-bottom: 0.5rem;
}
.resource-item a {
 font-size: 1.2rem;
}
.resource-item p {
 margin-bottom: 0;
}

/* Cookie Table */
.cookie-table {
 width: 100%;
 border-collapse: collapse;
 margin-top: 2rem;
}
.cookie-table th, .cookie-table td {
 border: 1px solid var(--border-color);
 padding: 12px;
 text-align: left;
}
.cookie-table th {
 background-color: var(--bg-light);
}

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

/* Cookie Banner */
.cookie-banner {
 position: fixed;
 bottom: 0;
 left: 0;
 right: 0;
 background: var(--bg-light);
 border-top: 1px solid var(--border-color);
 padding: 20px;
 z-index: 1200;
 display: none;
 align-items: center;
 justify-content: space-between;
 gap: 20px;
 box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}
.cookie-banner p { margin: 0; font-size: 0.9rem; }
.cookie-banner p a { font-weight: 600; }
.cookie-buttons { display: flex; gap: 12px; }

/* Responsive */
@media (max-width: 992px) {
 .grid-3 { grid-template-columns: 1fr; }
 .media-object, .media-object.reverse { grid-template-columns: 1fr; }
 .media-object.reverse .media-visual { grid-row: 1; margin-bottom: 2rem;}
 .contact-grid { grid-template-columns: 1fr; }
 .footer-grid { grid-template-columns: 1fr 1fr; }
 .footer-brand { grid-column: 1 / -1; }
 .disclaimer { text-align: left; }
}

@media (max-width: 768px) {
 .nav-menu {
 position: fixed;
 top: 0;
 right: -100%;
 width: 60%;
 max-width: 300px;
 height: 100%;
 background: var(--bg-white);
 padding: 100px 30px 30px;
 box-shadow: -5px 0 15px rgba(0,0,0,0.1);
 transition: right 0.4s ease-in-out;
 flex-direction: column;
 justify-content: flex-start;
 z-index: 1050;
 }
 .nav-menu.active {
 right: 0;
 }
 .nav-links {
 flex-direction: column;
 gap: 24px;
 align-items: flex-start;
 }
 .nav-toggle {
 display: block;
 }
 .footer-grid { grid-template-columns: 1fr; text-align: center; }
 .footer-contact-item { justify-content: center; }
 .footer-bottom { flex-direction: column; }
 .cookie-banner { flex-direction: column; text-align: center; }
}

@media (max-width: 576px) {
 .contact-form-wrapper {
 padding: 24px;
 }
}