:root {
 --primary-color: #1e3a5f; /* Dark Navy Blue */
 --primary-dark: #12233a;
 --secondary-color: #3b82f6; /* Bright Blue Accent */
 --text-dark: #1f2937; /* Dark Gray */
 --text-light: #6b7280; /* Medium Gray */
 --bg-light: #f3f4f6; /* Light Gray Background */
 --bg-white: #ffffff;
 --border-color: #d1d5db;
 --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
 --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
 --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
 --radius: 8px;
 --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;
 font-size: 16px;
}

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

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

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

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

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

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

.container {
 max-width: 1200px;
 margin-left: auto;
 margin-right: auto;
 padding-left: 1.5rem;
 padding-right: 1.5rem;
}

/* --- Header & Navigation --- */
.header {
 position: sticky;
 top: 0;
 width: 100%;
 z-index: 1000;
 background: rgba(255, 255, 255, 0.95);
 backdrop-filter: blur(10px);
 border-bottom: 1px solid #e5e7eb;
 transition: background-color 0.3s, box-shadow 0.3s;
}

.header.scrolled {
 box-shadow: var(--shadow-md);
}

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

.nav-logo {
 font-weight: 700;
 font-size: 1.25rem;
 color: var(--primary-color);
}
.nav-logo:hover {
 color: var(--primary-color);
}

.nav-links {
 display: flex;
 list-style: none;
 gap: 32px;
 align-items: center;
}

.nav-links a {
 color: var(--text-dark);
 font-weight: 500;
 position: relative;
 padding: 5px 0;
}

.nav-links a::after {
 content: '';
 position: absolute;
 bottom: 0;
 left: 0;
 width: 0;
 height: 2px;
 background-color: var(--secondary-color);
 transition: width 0.3s ease;
}

.nav-links a:hover::after, .nav-links a.active::after {
 width: 100%;
}

.nav-cta {
 display: block;
}

.nav-toggle {
 display: none;
 border: none;
 background: transparent;
 cursor: pointer;
 padding: 8px;
}
.nav-toggle span {
 display: block;
 width: 25px;
 height: 2px;
 background-color: var(--text-dark);
 margin: 5px 0;
 transition: var(--transition);
}

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

.hero::before {
 content: '';
 position: absolute;
 inset: 0;
 background: linear-gradient(rgba(30, 58, 95, 0.8), rgba(18, 35, 58, 0.9));
}

.hero-content {
 position: relative;
 z-index: 1;
 max-width: 800px;
}

.hero-title {
 color: white;
 font-size: clamp(2.5rem, 6vw, 4rem);
 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 24px;
 font-weight: 600;
 font-size: 1rem;
 border-radius: var(--radius);
 cursor: pointer;
 transition: var(--transition);
 text-align: center;
 border: 2px solid transparent;
}

.btn-primary {
 background-color: var(--secondary-color);
 color: white;
 border-color: var(--secondary-color);
}
.btn-primary:hover {
 background-color: #2563eb;
 color: white;
 transform: translateY(-2px);
 box-shadow: var(--shadow-md);
}

.btn-secondary {
 background-color: transparent;
 color: var(--secondary-color);
 border-color: var(--secondary-color);
}
.btn-secondary:hover {
 background-color: var(--secondary-color);
 color: white;
}

/* --- General Sections --- */
.section {
 padding: 80px 0;
}
.bg-light {
 background-color: var(--bg-light);
}

.section-header {
 text-align: center;
 margin-bottom: 50px;
 max-width: 700px;
 margin-left: auto;
 margin-right: auto;
}

.section-label {
 display: inline-block;
 background-color: var(--secondary-color);
 color: white;
 padding: 4px 12px;
 border-radius: 16px;
 font-size: 0.8rem;
 font-weight: 600;
 margin-bottom: 1rem;
 text-transform: uppercase;
 letter-spacing: 0.5px;
}

.section-title {
 margin-bottom: 1rem;
}

.section-subtitle {
 font-size: 1.1rem;
 color: var(--text-light);
 line-height: 1.7;
}

/* --- Grid & Card Styles --- */
.grid-3 {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 30px;
}

.card {
 background-color: var(--bg-white);
 border-radius: var(--radius);
 box-shadow: var(--shadow-md);
 transition: var(--transition);
 border: 1px solid var(--border-color);
}
.card:hover {
 transform: translateY(-5px);
 box-shadow: var(--shadow-lg);
}

.card-body {
 padding: 24px;
}
.card-title {
 margin-bottom: 1rem;
 color: var(--primary-color);
}
.card-text {
 color: var(--text-light);
}

/* --- Media Object Layout --- */
.media-object {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 50px;
 align-items: center;
}
.media-object.reverse {
 grid-template-columns: 1fr 1fr;
}
.media-object.reverse .media-visual {
 order: 2;
}
.media-object .media-visual img {
 border-radius: var(--radius);
 box-shadow: var(--shadow-lg);
 width: 100%;
 height: 400px;
 object-fit: cover;
}
.media-object .media-copy h2 {
 margin-bottom: 1.5rem;
}
.media-object .media-copy p {
 margin-bottom: 1rem;
 color: var(--text-light);
}
.media-object .media-copy a.btn {
 margin-top: 1.5rem;
}

/* --- Team Section --- */
.team-grid {
 grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.team-card {
 text-align: center;
 padding: 24px;
 background: var(--bg-white);
 border-radius: var(--radius);
 box-shadow: var(--shadow-md);
 transition: var(--transition);
}
.team-card:hover {
 transform: translateY(-5px);
 box-shadow: var(--shadow-lg);
}
.team-photo {
 width: 120px;
 height: 120px;
 border-radius: 50%;
 margin: 0 auto 1rem;
 object-fit: cover;
 border: 4px solid var(--bg-white);
 box-shadow: var(--shadow-md);
}
.team-name {
 margin-bottom: 0.5rem;
}
.team-role {
 font-weight: 500;
 color: var(--secondary-color);
 margin-bottom: 0.75rem;
}
.team-bio {
 font-size: 0.9rem;
 color: var(--text-light);
}

/* --- Contact Page --- */
.contact-grid {
 display: grid;
 grid-template-columns: 2fr 1fr;
 gap: 50px;
 background: var(--bg-white);
 padding: 40px;
 border-radius: var(--radius);
 box-shadow: var(--shadow-lg);
}
.contact-form-wrapper h3, .contact-info h3 {
 margin-bottom: 1.5rem;
}
.form-group {
 margin-bottom: 1.5rem;
}
.form-label {
 display: block;
 margin-bottom: 0.5rem;
 font-weight: 500;
}
.form-control {
 width: 100%;
 padding: 12px;
 border: 1px solid var(--border-color);
 border-radius: var(--radius);
 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.3);
}
textarea.form-control {
 resize: vertical;
 min-height: 120px;
}
.form-consent {
 display: flex;
 align-items: flex-start;
 gap: 10px;
 font-size: 0.9rem;
 color: var(--text-light);
}
.form-consent input {
 margin-top: 5px;
}
.form-submit-btn {
 width: 100%;
}
.contact-details {
 list-style: none;
}
.contact-details li {
 display: flex;
 align-items: flex-start;
 gap: 15px;
 margin-bottom: 1.5rem;
 color: var(--text-light);
}
.contact-details svg {
 flex-shrink: 0;
 width: 24px;
 height: 24px;
 color: var(--secondary-color);
 margin-top: 3px;
}
.contact-details strong {
 display: block;
 color: var(--text-dark);
}
.map-container {
 margin-top: 60px;
 border-radius: var(--radius);
 overflow: hidden;
 box-shadow: var(--shadow-lg);
 height: 450px;
}

/* --- Article/Legal Pages --- */
.text-center-max { max-width: 800px; margin-left: auto; margin-right: auto; text-align: center; }
.article-container { max-width: 800px; }
.article-title { margin-bottom: 1rem; }
.article-intro { font-size: 1.2rem; color: var(--text-light); margin-bottom: 2rem; }
.article-meta { font-size: 0.9rem; color: var(--text-light); margin-bottom: 2rem; }
.article-container h2 { margin: 2.5rem 0 1rem; }
.article-container h3 { margin: 2rem 0 1rem; }
.article-container p { margin-bottom: 1.5rem; color: #374151; }
.article-container ul { margin-left: 20px; margin-bottom: 1.5rem; }
.article-container li { margin-bottom: 0.75rem; }
.article-image {
 width: 100%;
 border-radius: var(--radius);
 box-shadow: var(--shadow-md);
 margin-bottom: 2rem;
 height: 400px;
 object-fit: cover;
}
.table-container {
 overflow-x: auto;
 margin: 2rem 0;
}
table {
 width: 100%;
 border-collapse: collapse;
}
th, td {
 padding: 12px 15px;
 text-align: left;
 border-bottom: 1px solid var(--border-color);
}
th {
 background-color: var(--bg-light);
 font-weight: 600;
 color: var(--primary-color);
}

/* --- Footer --- */
.footer {
 background-color: var(--primary-color);
 color: #e5e7eb;
 padding: 60px 0 30px;
 margin-top: 80px;
}
.footer-container {
 max-width: 1200px;
 margin: 0 auto;
 padding: 0 1.5rem;
}
.footer-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
 gap: 40px;
 margin-bottom: 40px;
}
.footer-logo {
 font-size: 1.5rem;
 font-weight: 700;
 color: white;
 margin-bottom: 1rem;
 display: block;
}
.footer-logo:hover {
 color: white;
}
.footer-description {
 font-size: 0.9rem;
 color: #9ca3af;
 line-height: 1.6;
 margin-bottom: 1.5rem;
}
.footer-social {
 display: flex;
 gap: 12px;
}
.footer-social a {
 width: 40px;
 height: 40px;
 background: rgba(255, 255, 255, 0.1);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 color: white;
}
.footer-social a:hover {
 background-color: var(--secondary-color);
 color: white;
}
.footer-heading {
 font-size: 1rem;
 font-weight: 600;
 color: white;
 margin-bottom: 1.5rem;
 text-transform: uppercase;
 letter-spacing: 1px;
}
.footer-links {
 list-style: none;
}
.footer-links li {
 margin-bottom: 0.75rem;
}
.footer-links a {
 color: #9ca3af;
 font-size: 0.9rem;
}
.footer-links a:hover {
 color: white;
}
.footer-contact-item {
 display: flex;
 gap: 10px;
 align-items: flex-start;
 margin-bottom: 1rem;
 font-size: 0.9rem;
 color: #9ca3af;
}
.footer-contact-item a {
 color: #9ca3af;
}
.footer-contact-item a:hover {
 color: white;
}
.footer-contact-item svg {
 flex-shrink: 0;
 width: 18px;
 color: var(--secondary-color);
 margin-top: 3px;
}
.disclaimer-section {
 padding: 20px;
 background: rgba(0,0,0,0.2);
 border-radius: var(--radius);
 font-size: 0.8rem;
 color: #9ca3af;
 margin: 40px 0;
}
.disclaimer-section strong {
 color: #d1d5db;
}
.footer-divider {
 border-top: 1px solid rgba(255, 255, 255, 0.1);
 margin: 30px 0;
}
.footer-bottom {
 display: flex;
 justify-content: space-between;
 align-items: center;
 flex-wrap: wrap;
 gap: 1rem;
 font-size: 0.85rem;
 color: #9ca3af;
}
.footer-legal-links {
 display: flex;
 gap: 1.5rem;
}
.footer-legal-links a {
 color: #9ca3af;
}
.footer-legal-links a:hover {
 color: white;
}

/* --- Cookie Banner --- */
#cookie-banner {
 position: fixed;
 bottom: 0;
 left: 0;
 right: 0;
 background-color: var(--primary-color);
 color: white;
 padding: 1.5rem;
 display: none;
 align-items: center;
 justify-content: space-between;
 gap: 1.5rem;
 z-index: 2000;
 box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
 flex-wrap: wrap;
}
#cookie-banner p {
 margin: 0;
}
#cookie-banner a {
 color: var(--secondary-color);
 text-decoration: underline;
}
#cookie-banner > div {
 display: flex;
 gap: 1rem;
}

/* --- Responsive --- */
@media (max-width: 992px) {
 .grid-3 { grid-template-columns: 1fr 1fr; }
 .media-object, .media-object.reverse { grid-template-columns: 1fr; }
 .media-object.reverse .media-visual { order: 0; }
 .contact-grid { grid-template-columns: 1fr; }
 #cookie-banner {
 flex-direction: column;
 text-align: center;
 }
}
@media (max-width: 768px) {
 .grid-3 { grid-template-columns: 1fr; }
 .nav-links {
 position: fixed;
 top: 70px;
 right: 0;
 width: 100%;
 max-width: 320px;
 height: calc(100vh - 70px);
 background-color: white;
 flex-direction: column;
 align-items: flex-start;
 padding: 2rem;
 gap: 1rem;
 transform: translateX(100%);
 transition: transform 0.3s ease-in-out;
 box-shadow: -5px 0 15px rgba(0,0,0,0.1);
 }
 .nav-links.active {
 transform: translateX(0);
 }
 .nav-cta {
 display: none;
 }
 .nav-toggle {
 display: block;
 z-index: 1001;
 }
 .footer-grid {
 grid-template-columns: 1fr 1fr;
 }
 .footer-bottom {
 flex-direction: column;
 text-align: center;
 }
}
@media (max-width: 576px) {
 .footer-grid {
 grid-template-columns: 1fr;
 }
}