:root {
 --primary-color: #0d2c54; /* Dark Navy Blue */
 --secondary-color: #1a5a96; /* Steel Blue */
 --accent-color: #f7b801; /* Gold/Yellow Accent */
 --bg-light: #f8f9fa;
 --bg-white: #ffffff;
 --text-dark: #212529;
 --text-light: #495057;
 --text-muted: #6c757d;
 --border-color: #dee2e6;
 --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
 --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
 --shadow-md: 0 4px 8px rgba(0,0,0,0.08);
 --radius-md: 8px;
 --radius-lg: 12px;
 --transition: all 0.3s ease-in-out;
}

*, *::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-dark);
 background-color: 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(--primary-color);
}

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

p {
 margin-bottom: 1rem;
 color: var(--text-light);
}

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

img {
 max-width: 100%;
 height: auto;
 display: block;
 border-radius: var(--radius-md);
}

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

.section-header {
 text-align: center;
 max-width: 800px;
 margin: 0 auto 60px;
}
.section-title {
 margin-bottom: 1rem;
}
.section-subtitle {
 font-size: 1.15rem;
 color: var(--text-muted);
}
.section-label {
 display: inline-block;
 background: rgba(13, 44, 84, 0.1);
 color: var(--primary-color);
 padding: 6px 16px;
 border-radius: 20px;
 font-size: 0.9rem;
 font-weight: 600;
 margin-bottom: 1rem;
 text-transform: uppercase;
 letter-spacing: 0.5px;
}

/* Header & Nav */
.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 {
 box-shadow: var(--shadow-md);
 background: rgba(255, 255, 255, 0.98);
}
.nav {
 display: flex;
 justify-content: space-between;
 align-items: center;
 height: 80px;
}
.nav-logo {
 font-size: 1.5rem;
 font-weight: 700;
 color: var(--primary-color);
}
.nav-logo:hover {
 color: var(--primary-color);
}
.nav-links {
 display: flex;
 align-items: center;
 gap: 40px;
 list-style: none;
}
.nav-links a {
 font-weight: 600;
 font-size: 1rem;
 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-color: var(--secondary-color);
 transition: var(--transition);
}
.nav-links a:hover::after, .nav-links a.active::after {
 width: 100%;
}
.nav-cta {
 margin-left: 20px;
}

.nav-toggle {
 display: none;
 cursor: pointer;
 background: none;
 border: none;
 z-index: 1001;
}
.nav-toggle span {
 display: block;
 width: 25px;
 height: 3px;
 background-color: var(--text-dark);
 margin: 5px 0;
 transition: var(--transition);
}

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

/* Hero Section */
.hero {
 position: relative;
 min-height: 60vh;
 padding: 100px 0;
 display: flex;
 align-items: center;
 justify-content: center;
 text-align: center;
 background-image: url('assets/img-5b47dba1.jpg');
 background-size: cover;
 background-position: center;
}
.hero::before {
 content: '';
 position: absolute;
 inset: 0;
 background: linear-gradient(rgba(13, 44, 84, 0.8), rgba(13, 44, 84, 0.6));
}
.hero-content {
 position: relative;
 z-index: 1;
 color: white;
 max-width: 900px;
}
.hero-title {
 color: white;
 margin-bottom: 1.5rem;
}
.hero-subtitle {
 font-size: 1.25rem;
 line-height: 1.8;
 color: rgba(255,255,255,0.9);
 margin-bottom: 2.5rem;
}
.hero-buttons {
 display: flex;
 justify-content: center;
 gap: 20px;
 flex-wrap: wrap;
}

/* Principles Section */
.principles-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 30px;
}
.principle-card {
 background-color: var(--bg-white);
 padding: 30px;
 text-align: center;
 border: 1px solid var(--border-color);
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-sm);
 transition: var(--transition);
}
.principle-card:hover {
 transform: translateY(-5px);
 box-shadow: var(--shadow-md);
}
.principle-icon {
 width: 60px;
 height: 60px;
 margin: 0 auto 20px;
 background-color: var(--accent-color);
 color: var(--primary-color);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
}
.principle-icon svg {
 width: 30px;
 height: 30px;
}
.principle-title {
 margin-bottom: 10px;
 font-size: 1.25rem;
}
.principle-text {
 color: var(--text-muted);
}

/* Alternating Section */
.alternating-block {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 60px;
 align-items: center;
}
.alternating-block.reverse {
 grid-template-columns: 1fr 1fr;
}
.alternating-block.reverse .alternating-image {
 order: 2;
}
.alternating-image img {
 box-shadow: var(--shadow-md);
 max-height: 450px;
 width: 100%;
 object-fit: cover;
}
.alternating-content .section-title {
 margin-bottom: 1.5rem;
}
.alternating-content p {
 margin-bottom: 1.5rem;
}
.alternating-content .btn {
 margin-top: 1rem;
}

/* About Summary Section */
.about-summary-section .section-header {
 text-align: center;
}
.about-summary-section .btn {
 margin-top: 2rem;
}

/* Page Content & Articles */
.page-content {
 padding-top: 40px;
}
.article-container {
 max-width: 900px;
}
.article-title {
 margin-bottom: 1rem;
}
.article-intro {
 font-size: 1.2rem;
 color: var(--text-muted);
 margin-bottom: 3rem;
}
.article-h2 {
 margin-top: 3rem;
 margin-bottom: 1.5rem;
 border-bottom: 2px solid var(--border-color);
 padding-bottom: 0.5rem;
}
.article-h3 {
 margin-top: 2rem;
 margin-bottom: 1rem;
 font-size: 1.25rem;
}
.article-section ul {
 list-style-position: inside;
 padding-left: 1rem;
 margin-bottom: 1.5rem;
}
.article-section ul li {
 margin-bottom: 0.75rem;
 line-height: 1.8;
}
.article-image-full {
 margin: 2rem 0;
}
.article-image-full img {
 width: 100%;
 max-height: 400px;
 object-fit: cover;
}
.image-caption {
 text-align: center;
 font-style: italic;
 color: var(--text-muted);
 font-size: 0.9rem;
 margin-top: 0.5rem;
}

/* About Page */
.about-container {
 max-width: 900px;
}
.about-content .about-text-block {
 margin-bottom: 3rem;
}
.team-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 30px;
}
.team-member-card {
 background: var(--bg-white);
 border-radius: var(--radius-lg);
 text-align: center;
 padding: 30px;
 box-shadow: var(--shadow-md);
}
.team-photo {
 width: 120px;
 height: 120px;
 border-radius: 50%;
 margin: 0 auto 20px;
 object-fit: cover;
 border: 4px solid var(--bg-white);
 box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.team-member-name {
 font-size: 1.2rem;
 margin-bottom: 5px;
}
.team-member-role {
 color: var(--secondary-color);
 font-weight: 600;
 margin-bottom: 15px;
}
.team-member-bio {
 font-size: 0.9rem;
 color: var(--text-muted);
 line-height: 1.6;
}

/* Contact Page */
.contact-page-container {
 max-width: 1100px;
}
.contact-layout {
 display: grid;
 grid-template-columns: 1.2fr 1fr;
 gap: 50px;
 align-items: flex-start;
}
.contact-form-container h3, .contact-info-container h3 {
 font-size: 1.5rem;
 margin-bottom: 1.5rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-label {
 display: block;
 margin-bottom: 0.5rem;
 font-weight: 600;
}
.form-control {
 width: 100%;
 padding: 12px;
 border: 1px solid var(--border-color);
 border-radius: var(--radius-md);
 font-size: 1rem;
 font-family: var(--font-main);
}
.form-control:focus {
 outline: none;
 border-color: var(--secondary-color);
 box-shadow: 0 0 0 3px rgba(26, 90, 150, 0.2);
}
textarea.form-control {
 resize: vertical;
}
.form-group-checkbox {
 display: flex;
 align-items: flex-start;
 gap: 10px;
 margin-bottom: 1.5rem;
}
.form-group-checkbox input {
 margin-top: 5px;
}
.form-group-checkbox label {
 font-size: 0.9rem;
 color: var(--text-muted);
}
.form-submit-btn {
 width: 100%;
}
.contact-details-list {
 list-style: none;
}
.contact-details-list li {
 display: flex;
 flex-direction: column;
 margin-bottom: 1.5rem;
 font-size: 1rem;
}
.contact-details-list strong {
 font-weight: 600;
 margin-bottom: 0.25rem;
}
.contact-details-list span, .contact-details-list a {
 color: var(--text-light);
}
.contact-map {
 margin-top: 2rem;
}
.contact-map iframe {
 border-radius: var(--radius-lg);
}

/* Footer */
.footer {
 background-color: var(--primary-color);
 color: rgba(255,255,255,0.7);
 padding: 60px 0 30px;
 margin-top: 80px;
}
.footer-grid {
 display: grid;
 grid-template-columns: 2fr repeat(3, 1fr);
 gap: 40px;
 padding-bottom: 40px;
 border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
 font-size: 1.5rem;
 font-weight: 700;
 color: white;
 margin-bottom: 1rem;
 display: inline-block;
}
.footer-logo:hover {
 color: white;
}
.footer-description {
 font-size: 0.9rem;
 line-height: 1.6;
}
.footer-heading {
 font-size: 1.1rem;
 font-weight: 600;
 color: white;
 margin-bottom: 1.5rem;
}
.footer-links, .footer-contact {
 list-style: none;
}
.footer-links li {
 margin-bottom: 1rem;
}
.footer-links a, .footer-contact a {
 color: rgba(255,255,255,0.7);
}
.footer-links a:hover, .footer-contact a:hover {
 color: white;
}
.footer-contact li {
 display: flex;
 gap: 12px;
 align-items: flex-start;
 margin-bottom: 1.25rem;
}
.footer-contact svg {
 width: 20px;
 height: 20px;
 flex-shrink: 0;
 margin-top: 3px;
 color: var(--accent-color);
}
.footer-bottom {
 padding-top: 30px;
 display: flex;
 justify-content: space-between;
 align-items: center;
 font-size: 0.9rem;
}
.footer-socials p {
 margin-bottom: 0;
}

/* Cookie Banner */
.cookie-banner {
 position: fixed;
 bottom: 0;
 left: 0;
 right: 0;
 background-color: var(--primary-color);
 color: white;
 padding: 20px;
 display: flex;
 justify-content: space-between;
 align-items: center;
 z-index: 2000;
 box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
 display: none;
 gap: 20px;
}
.cookie-banner p {
 margin: 0;
 color: white;
}
.cookie-banner a {
 color: var(--accent-color);
 text-decoration: underline;
}
.cookie-buttons {
 display: flex;
 gap: 15px;
 flex-shrink: 0;
}
.cookie-buttons .btn-primary { background-color: var(--accent-color); color: var(--primary-color); border-color: var(--accent-color);}
.cookie-buttons .btn-primary:hover { background-color: #ffca2b; }
.cookie-buttons .btn-secondary { background-color: transparent; border-color: white; color: white}
.cookie-buttons .btn-secondary:hover { background-color: white; color: var(--primary-color); }

/* Thank You page */
.thank-you-section { text-align: center; }
.thank-you-icon { color: var(--secondary-color); margin-bottom: 2rem; }
.thank-you-icon svg { width: 80px; height: 80px; }
.thank-you-section .btn { margin-top: 2rem; }
.cookie-table { width: 100%; border-collapse: collapse; margin: 2rem 0; }
.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); font-weight: 600; }

/* Responsive Design */
@media screen and (max-width: 992px) {
 .principles-grid, .team-grid {
 grid-template-columns: 1fr;
 }
 .alternating-block, .alternating-block.reverse {
 grid-template-columns: 1fr;
 }
 .alternating-block.reverse .alternating-image {
 order: 0;
 }
 .contact-layout {
 grid-template-columns: 1fr;
 }
 .footer-grid {
 grid-template-columns: repeat(2, 1fr);
 }
}
@media screen and (max-width: 768px) {
 .nav-links {
 position: fixed;
 top: 80px;
 left: 0;
 right: 0;
 flex-direction: column;
 background-color: white;
 padding: 30px;
 gap: 25px;
 transform: translateX(100%);
 transition: transform 0.3s ease-in-out;
 box-shadow: var(--shadow-md);
 height: calc(100vh - 80px);
 overflow-y: auto;
 }
 .nav-links.active {
 transform: translateX(0);
 }
 .nav-toggle {
 display: block;
 }
 .nav-cta {
 display: none;
 }
 .footer-grid {
 grid-template-columns: 1fr;
 text-align: center;
 }
 .footer-contact li {
 justify-content: center;
 }
 .footer-bottom {
 flex-direction: column;
 gap: 15px;
 }
 .cookie-banner {
 flex-direction: column;
 text-align: center;
 }
}

/* Scroll Animations */
.fade-in {
 opacity: 0;
 transform: translateY(30px);
 transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.is-visible {
 opacity: 1;
 transform: translateY(0);
}