:root {
 --primary-color: #0b2e59;
 --primary-dark: #071f3b;
 --secondary-color: #3b82f6;
 --accent-color: #3b82f6;
 --text-dark: #1a1a2e;
 --text-light: #5a647e;
 --text-muted: #888;
 --bg-light: #f3f4f6;
 --bg-white: #ffffff;
 --border-color: #e5e7eb;
 --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
 --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
 --shadow-lg: 0 10px 15px rgba(0,0,0,0.07);
 --radius-sm: 4px;
 --radius-md: 8px;
 --radius-lg: 16px;
 --transition: all 0.3s ease;
 --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Base and Typography */
*, *::before, *::after {
 box-sizing: border-box;
 margin: 0;
 padding: 0;
}

html {
 scroll-behavior: smooth;
 font-size: 16px;
}

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

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

a:hover {
 color: var(--primary-dark);
}

h1, h2, h3, h4, h5, h6 {
 color: var(--text-dark);
 font-weight: 700;
 line-height: 1.2;
}

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

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

.section {
 padding: 80px 0;
}

.section.bg-light {
 background: var(--bg-light);
}

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

.section-header {
 text-align: center;
 max-width: 750px;
 margin: 0 auto 50px;
}
.section-header.centered { text-align: center; }

.section-label {
 display: inline-block;
 padding: 6px 16px;
 background-color: rgba(59, 130, 246, 0.1);
 color: var(--secondary-color);
 border-radius: 99px;
 font-size: 0.9rem;
 font-weight: 600;
 margin-bottom: 16px;
}

.section-title {
 margin-bottom: 16px;
}

.section-subtitle{
 font-size: 1.15rem;
 line-height: 1.7;
}

/* Header */
.header {
 position: fixed;
 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 {
 box-shadow: var(--shadow-md);
}

.nav {
 height: 70px;
 display: flex;
 align-items: center;
 justify-content: space-between;
}

.nav-logo {
 font-size: 1.5rem;
 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: -2px;
 left: 0;
 right: 0;
 height: 2px;
 background-color: var(--secondary-color);
 transform: scaleX(0);
 transition: transform 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
 transform: scaleX(1);
}

.nav-toggle {
 display: none;
 background: none;
 border: none;
 cursor: pointer;
 z-index: 1001;
}

.nav-toggle span {
 display: block;
 width: 24px;
 height: 2px;
 background: var(--text-dark);
 margin: 6px 0;
 transition: var(--transition);
}

/* Hero */
.hero {
 min-height: 60vh;
 background-size: cover;
 background-position: center;
 position: relative;
 display: flex;
 align-items: center;
 color: white;
}

.hero::before {
 content: '';
 position: absolute;
 inset: 0;
 background: linear-gradient(135deg, rgba(11, 46, 89, 0.8) 0%, rgba(11, 46, 89, 0.5) 100%);
}

.hero-content {
 position: relative;
 text-align: center;
 max-width: 800px;
}
.hero-title {
 color: white;
 margin-bottom: 1rem;
}
.hero-subtitle {
 font-size: 1.25rem;
 color: rgba(255,255,255,0.9);
 max-width: 700px;
 margin: 0 auto;
}

/* Buttons */
.btn {
 display: inline-block;
 padding: 12px 28px;
 font-size: 1rem;
 font-weight: 600;
 border-radius: var(--radius-md);
 cursor: pointer;
 transition: var(--transition);
 border: 1px solid transparent;
 text-align: center;
}

.btn-primary {
 background-color: var(--secondary-color);
 color: white;
 border-color: var(--secondary-color);
}
.btn-primary:hover {
 background-color: var(--primary-dark);
 border-color: var(--primary-dark);
 transform: translateY(-2px);
 color:white;
}

.btn-secondary {
 background-color: transparent;
 color: var(--secondary-color);
 border: 2px solid var(--secondary-color);
}
.btn-secondary:hover {
 background-color: var(--secondary-color);
 color: white;
 transform: translateY(-2px);
}

/* Cards */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

.card {
 background: white;
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-sm);
 transition: var(--transition);
 border: 1px solid var(--border-color);
 padding: 24px;
 display: flex;
 flex-direction: column;
}
.card:hover {
 transform: translateY(-5px);
 box-shadow: var(--shadow-lg);
}
.card-icon {
 width: 50px;
 height: 50px;
 border-radius: 50%;
 background-color: rgba(59, 130, 246, 0.1);
 color: var(--secondary-color);
 display: flex;
 align-items: center;
 justify-content: center;
 margin-bottom: 20px;
}
.card-icon svg {
 width: 24px;
 height: 24px;
}
.card-title {
 font-size: 1.3rem;
 margin-bottom: 12px;
}

/* 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 {
 order: 2;
}
.media-visual img {
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-lg);
 max-height: 450px;
 width: 100%;
 object-fit: cover;
}
.media-copy ul {
 list-style-position: inside;
 padding-left: 0;
 margin-top: 1.5rem;
 display: flex;
 flex-direction: column;
 gap: 0.75rem;
}

/* Content Pages */
.page-header-section {
 background-color: var(--bg-light);
 padding: 80px 0;
}
.content-body {
 max-width: 900px;
 margin: 0 auto;
}
.content-heading {
 margin: 2.5rem 0 1rem;
}
.content-body ul {
 list-style-type: disc;
 padding-left: 20px;
 margin-bottom: 1.5rem;
}
.content-body li {
 margin-bottom: 0.75rem;
}
.content-separator {
 margin-top: 4rem;
 padding-top: 4rem;
 border-top: 1px solid var(--border-color);
}
.resource-list {
 list-style: none;
 padding: 0;
}
.resource-item {
 background: white;
 padding: 20px;
 border-radius: var(--radius-md);
 border: 1px solid var(--border-color);
 margin-bottom: 20px;
 transition: var(--transition);
}
.resource-item:hover {
 box-shadow: var(--shadow-md);
 border-color: var(--secondary-color);
}
.resource-title {
 margin-bottom: 8px;
}
.resource-link {
 display: inline-block;
 margin-top: 12px;
 font-weight: 600;
}

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

/* Contact Page */
.contact-grid {
 display: grid;
 grid-template-columns: 1fr 1.2fr;
 gap: 48px;
 align-items: flex-start;
}
.contact-details {
 margin-top: 2rem;
 display: flex;
 flex-direction: column;
 gap: 1.5rem;
}
.contact-form-wrapper {
 background: white;
 padding: 32px;
 border-radius: var(--radius-lg);
 border: 1px solid var(--border-color);
 box-shadow: var(--shadow-md);
}
.form-group {
 margin-bottom: 20px;
}
.form-label {
 display: block;
 margin-bottom: 8px;
 font-weight: 500;
 color: var(--text-dark);
}
.form-control {
 width: 100%;
 padding: 12px 16px;
 border: 1px solid var(--border-color);
 border-radius: var(--radius-md);
 font-size: 1rem;
 font-family: var(--font-main);
 transition: var(--transition);
}
.form-control:focus {
 outline: none;
 border-color: var(--secondary-color);
 box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}
textarea.form-control {
 resize: vertical;
}
.form-group-checkbox {
 display: flex;
 align-items: flex-start;
 gap: 10px;
 margin: 20px 0;
}
.form-group-checkbox input {
 margin-top: 5px;
}
.form-group-checkbox label {
 font-size: 0.9rem;
 color: var(--text-light);
}
.map-container {
 width: 100%;
 height: 450px;
 border-radius: var(--radius-lg);
 overflow: hidden;
 margin-top: 60px;
 box-shadow: var(--shadow-md);
}

/* Footer */
.footer {
 background: var(--primary-dark);
 color: #a9b4c7;
 padding: 60px 0 30px;
 margin-top: 80px;
}

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

.footer-grid {
 display: grid;
 grid-template-columns: 2fr 1fr 1.5fr 1fr;
 gap: 40px;
 margin-bottom: 40px;
}

.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;
 max-width: 300px;
}

.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, .footer-contact-item a {
 color: #a9b4c7;
 font-size: 0.9rem;
}

.footer-links a:hover, .footer-contact-item a:hover {
 color: white;
}

.footer-contact-item {
 display: flex;
 gap: 12px;
 align-items: flex-start;
 margin-bottom: 16px;
}

.footer-contact-item svg {
 width: 20px;
 height: 20px;
 flex-shrink: 0;
 margin-top: 3px;
 color: var(--accent-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, .footer-legal-links p {
 font-size: 0.85rem;
 color: #7f8a9e;
}

/* Cookie Banner */
#cookie-banner {
 position: fixed;
 bottom: 0;
 left: 0;
 right: 0;
 background: var(--text-dark);
 color: white;
 padding: 20px;
 display: none;
 justify-content: space-between;
 align-items: center;
 z-index: 1001;
 gap: 20px;
}
#cookie-banner p {
 margin: 0;
 font-size: 0.9rem;
}
#cookie-banner a {
 color: var(--accent-color);
 text-decoration: underline;
}
#cookie-banner div {
 display: flex;
 gap: 12px;
 flex-shrink: 0;
}

/* Animations */
.animate-on-scroll {
 opacity: 0;
 transform: translateY(20px);
 transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-on-scroll.is-visible {
 opacity: 1;
 transform: translateY(0);
}
.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.4s; }
.animate-on-scroll:nth-child(6) { transition-delay: 0.5s; }

/* Responsive */
@media (max-width: 992px) {
 .grid-3 { grid-template-columns: 1fr 1fr; }
 .footer-grid { grid-template-columns: 1fr 1fr; }
 .media-object, .media-object.reverse { grid-template-columns: 1fr; }
 .media-object.reverse .media-visual { order: 1; }
 .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
 h1 { font-size: 2.2rem; }
 h2 { font-size: 1.8rem; }
 .nav-toggle { display: block; }
 .nav-links {
 position: fixed;
 top: 0;
 right: -100%;
 width: 70%;
 max-width: 300px;
 height: 100vh;
 background: white;
 flex-direction: column;
 padding: 80px 30px 30px;
 gap: 24px;
 box-shadow: -5px 0 15px rgba(0,0,0,0.1);
 transition: right 0.4s ease-in-out;
 }
 .nav-links.active { right: 0; }
 #cookie-banner { flex-direction: column; text-align: center; }
}

@media (max-width: 576px) {
 .grid-2, .grid-3, .team-grid { grid-template-columns: 1fr; }
 .footer-grid { grid-template-columns: 1fr; text-align: center; }
 .footer-brand { margin: 0 auto; }
 .footer-contact-item { justify-content: center; }
 .footer-bottom { flex-direction: column; text-align: center; }
}