:root {
 --primary-color: #0A2540; /* Dark Navy Blue */
 --secondary-color: #0077FF; /* Bright Blue */
 --accent-color: #00A3FF; /* Lighter Blue */
 --bg-light: #F6F9FC;
 --bg-white: #FFFFFF;
 --text-dark: #1A202C;
 --text-light: #4A5568;
 --text-muted: #718096;
 --border-color: #E2E8F0;
 --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-sm: 4px;
 --radius-md: 8px;
 --radius-lg: 16px;
 --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
 --transition: all 0.3s ease-in-out;
}

*, *::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;
}

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

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

h1, h2, h3, h4, h5, h6 {
 font-weight: 700;
 line-height: 1.2;
 color: var(--primary-color);
 margin-bottom: 1rem;
}

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

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

/* Header & Navigation */
.header {
 position: sticky;
 top: 0;
 left: 0;
 right: 0;
 z-index: 1000;
 background-color: 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-color: rgba(255, 255, 255, 0.98);
}

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

.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 {
 text-decoration: none;
}

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

.nav-links a {
 font-weight: 500;
 color: var(--text-light);
 font-size: 1rem;
 padding-bottom: 5px;
 position: relative;
}

.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,
.nav-links a.active {
 color: var(--primary-color);
 text-decoration: none;
}

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

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

.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: 60vh;
 max-height: 500px;
 background-size: cover;
 background-position: center;
 display: flex;
 align-items: center;
 justify-content: center;
 color: white;
 text-align: center;
 padding: 4rem 1.5rem;
}

.hero::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 background: linear-gradient(rgba(10, 37, 64, 0.8), rgba(10, 37, 64, 0.6));
}

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

.hero-title {
 color: white;
 font-size: clamp(2.5rem, 6vw, 4rem);
}

.hero-subtitle {
 font-size: clamp(1.1rem, 3vw, 1.25rem);
 opacity: 0.9;
 font-weight: 400;
 max-width: 650px;
 margin: 1rem auto 0;
}

/* Sections */
.section {
 padding: 80px 0;
}

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

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

.section-label {
 display: inline-block;
 font-size: 0.875rem;
 font-weight: 600;
 color: var(--secondary-color);
 text-transform: uppercase;
 margin-bottom: 0.5rem;
 letter-spacing: 1px;
}

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

.section-subtitle {
 font-size: 1.125rem;
 color: var(--text-light);
}

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

.grid-2-about {
 display: grid;
 grid-template-columns: 1.2fr 1fr;
 gap: 50px;
 align-items: center;
}

/* Card */
.card {
 background-color: var(--bg-white);
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-md);
 padding: 2rem;
 text-align: center;
 transition: var(--transition);
}
.card:hover {
 transform: translateY(-8px);
 box-shadow: var(--shadow-lg);
}

.card-icon {
 width: 60px;
 height: 60px;
 margin: 0 auto 1.5rem auto;
 border-radius: 50%;
 background-color: var(--bg-light);
 display: flex;
 align-items: center;
 justify-content: center;
}
.card-icon svg {
 width: 30px;
 height: 30px;
 color: var(--secondary-color);
}

.card-title {
 font-size: 1.25rem;
 margin-bottom: 0.5rem;
}

.card-text {
 color: var(--text-light);
}

/* Media Object */
.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-copy {
 order: 2;
}
.media-object.reverse .media-visual {
 order: 1;
}

.media-copy h3 { font-size: 2rem; }
.media-copy p { color: var(--text-light); margin-bottom: 1.5rem; }

.media-visual img {
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-lg);
 max-height: 400px;
 width: 100%;
 object-fit: cover;
}

/* Text Link */
.text-link {
 font-weight: 600;
 display: inline-block;
}

/* About Page */
.about-content p {
 color: var(--text-light);
 margin-bottom: 1rem;
}
.about-visual img {
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-lg);
 max-height: 450px;
 object-fit: cover;
}

/* Team Section */
.team-card {
 text-align: center;
 background: var(--bg-white);
 padding: 2rem;
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-md);
 transition: var(--transition);
}
.team-card:hover {
 transform: translateY(-8px);
 box-shadow: var(--shadow-lg);
}
.team-photo {
 width: 120px;
 height: 120px;
 border-radius: 50%;
 margin: 0 auto 1.5rem;
 object-fit: cover;
 border: 4px solid var(--bg-white);
 box-shadow: 0 0 15px rgba(0,0,0,0.1);
}
.team-name {
 font-size: 1.2rem;
 margin-bottom: 0.25rem;
}
.team-title {
 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: 1.1fr 1fr;
 gap: 50px;
}
.contact-form-container {
 background: var(--bg-white);
 padding: 2rem;
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-md);
}
.contact-form .form-group {
 margin-bottom: 1.5rem;
}
.contact-form label {
 display: block;
 margin-bottom: 0.5rem;
 font-weight: 600;
 color: var(--text-dark);
}
.contact-form input,
.contact-form textarea {
 width: 100%;
 padding: 0.8rem 1rem;
 border-radius: var(--radius-md);
 border: 1px solid var(--border-color);
 font-family: inherit;
 font-size: 1rem;
 transition: var(--transition);
}
.contact-form input:focus,
.contact-form textarea:focus {
 outline: none;
 border-color: var(--secondary-color);
 box-shadow: 0 0 0 3px rgba(0, 119, 255, 0.2);
}
.form-group-consent {
 display: flex;
 align-items: flex-start;
 gap: 0.75rem;
 font-size: 0.875rem;
 color: var(--text-light);
 margin-bottom: 1.5rem;
}
.form-group-consent input {
 width: auto;
 margin-top: 4px;
}
.btn-submit {
 width: 100%;
 padding: 1rem;
 background-color: var(--primary-color);
 color: white;
 border: none;
 border-radius: var(--radius-md);
 font-size: 1rem;
 font-weight: 600;
 cursor: pointer;
 transition: var(--transition);
}
.btn-submit:hover {
 background-color: var(--secondary-color);
}
.contact-info-block h3 {
 margin-bottom: 1rem;
}
.contact-info-block p {
 color: var(--text-light);
 margin-bottom: 1.5rem;
}
.contact-list {
 list-style: none;
 padding: 0;
}
.contact-list li {
 display: flex;
 align-items: flex-start;
 gap: 1rem;
 margin-bottom: 1rem;
 color: var(--text-light);
}
.contact-list svg {
 width: 24px;
 height: 24px;
 color: var(--secondary-color);
 flex-shrink: 0;
 margin-top: 2px;
}
.map-container {
 margin-top: 2rem;
 border-radius: var(--radius-lg);
 overflow: hidden;
 box-shadow: var(--shadow-md);
}

/* Page Container (for articles) */
.page-container {
 padding-top: 40px;
 padding-bottom: 80px;
}

.content-article {
 max-width: 800px;
 margin: 0 auto;
}

.article-header {
 text-align: center;
 margin-bottom: 3rem;
}
.article-header h1 {
 font-size: 3rem;
}
.article-intro {
 font-size: 1.2rem;
 color: var(--text-light);
}
.article-banner-image {
 width: 100%;
 max-height: 400px;
 object-fit: cover;
 border-radius: var(--radius-lg);
 margin-bottom: 3rem;
}
.article-body h2 {
 margin-top: 2.5rem;
 margin-bottom: 1rem;
 border-bottom: 2px solid var(--border-color);
 padding-bottom: 0.5rem;
}
.article-body p {
 margin-bottom: 1.5rem;
 color: var(--text-dark);
}
.article-body ul {
 margin-left: 20px;
 margin-bottom: 1.5rem;
}
.article-body li {
 margin-bottom: 0.75rem;
 color: var(--text-dark);
}

/* Legal & Thank You Page */
.legal-page .article-header { text-align: left; }
.legal-page .article-meta {
 font-size: 0.9rem;
 color: var(--text-muted);
}
.text-center-section {
 padding: 100px 0;
 text-align: center;
}
.thank-you-content {
 max-width: 600px;
 margin: 0 auto;
}
.thank-you-icon {
 width: 80px;
 height: 80px;
 color: var(--secondary-color);
 margin: 0 auto 1.5rem;
}
.cookie-table {
 width: 100%;
 border-collapse: collapse;
 margin: 2rem 0;
}
.cookie-table th, .cookie-table td {
 border: 1px solid var(--border-color);
 padding: 0.75rem;
 text-align: left;
}
.cookie-table th {
 background-color: var(--bg-light);
}

/* Footer */
.footer {
 background-color: var(--primary-color);
 color: #A0AEC0;
 padding: 60px 0 30px;
 margin-top: 80px;
}
.footer-grid {
 display: grid;
 grid-template-columns: 2fr repeat(3, 1fr);
 gap: 40px;
 margin-bottom: 40px;
}
.footer-logo {
 font-size: 1.25rem;
 font-weight: 700;
 color: white;
 margin-bottom: 1rem;
 display: block;
}
.footer-logo:hover {
 text-decoration: none;
}
.footer-description {
 font-size: 0.9rem;
}
.footer-heading {
 font-size: 1rem;
 font-weight: 600;
 color: white;
 text-transform: uppercase;
 letter-spacing: 0.5px;
 margin-bottom: 1.5rem;
}
.footer-links, .footer-contact {
 list-style: none;
}
.footer-links li, .footer-contact li {
 margin-bottom: 0.75rem;
}
.footer-links a, .footer-contact a {
 color: #A0AEC0;
 font-size: 0.9rem;
}
.footer-links a:hover, .footer-contact a:hover {
 text-decoration: underline;
 color: white;
}
.footer-disclaimer {
 font-size: 0.8rem;
 color: #718096;
 border-top: 1px solid #2D3748;
 padding-top: 2rem;
 margin-top: 2rem;
}
.footer-disclaimer strong { color: #A0AEC0;}
.footer-bottom {
 border-top: 1px solid #2D3748;
 padding-top: 30px;
 display: flex;
 justify-content: space-between;
 align-items: center;
 font-size: 0.875rem;
}
.footer-legal-links a {
 color: #A0AEC0;
 margin-left: 20px;
}

/* Animation */
.animate-on-scroll {
 opacity: 0;
 transform: translateY(30px);
 transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-on-scroll.is-visible {
 opacity: 1;
 transform: translateY(0);
}

/* Cookie Banner */
.cookie-banner {
 position: fixed;
 bottom: 0;
 left: 0;
 right: 0;
 background-color: var(--primary-color);
 color: white;
 padding: 1rem 1.5rem;
 display: none;
 align-items: center;
 justify-content: space-between;
 z-index: 1001;
 gap: 1rem;
 box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}
.cookie-banner p {
 margin: 0;
 font-size: 0.9rem;
}
.cookie-banner a {
 color: var(--accent-color);
 font-weight: 600;
}
.cookie-buttons {
 display: flex;
 gap: 0.75rem;
}
.cookie-banner button {
 padding: 0.5rem 1rem;
 border-radius: var(--radius-md);
 border: none;
 cursor: pointer;
 font-weight: 600;
 transition: var(--transition);
}
#cookie-accept {
 background-color: var(--secondary-color);
 color: white;
}
#cookie-accept:hover {
 background-color: var(--accent-color);
}
#cookie-decline {
 background-color: transparent;
 color: white;
 border: 1px solid #4A5568;
}
#cookie-decline:hover {
 background-color: #2D3748;
}

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

@media (max-width: 768px) {
 .nav-toggle {
 display: block;
 z-index: 1001;
 }

 .nav-links {
 position: fixed;
 top: 0;
 right: -100%;
 width: 300px;
 height: 100vh;
 background-color: var(--bg-white);
 flex-direction: column;
 padding: 100px 30px 30px;
 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;
 }
 .grid-2-about, .contact-grid {
 grid-template-columns: 1fr;
 }
 .cookie-banner {
 flex-direction: column;
 text-align: center;
 }
}

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