:root {
 --primary-color: #0d47a1; /* Deep Blue */
 --primary-dark: #002171;
 --secondary-color: #42a5f5; /* Light Blue */
 --text-dark: #212529;
 --text-light: #6c757d;
 --bg-white: #ffffff;
 --bg-light: #f4f6f8;
 --border-color: #dee2e6;
 --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
 --shadow-md: 0 4px 10px rgba(0, 0, 0, 0.08);
 --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;
}

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

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

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

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

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

.section {
 padding: 80px 0;
}

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

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

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

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

.grid-3 {
 display: grid;
 gap: 2rem;
}

@media (min-width: 768px) {
 .grid-3 {
 grid-template-columns: repeat(3, 1fr);
 }
}

/* --- Header --- */
.header {
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 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 {
 height: 70px;
 display: flex;
 justify-content: space-between;
 align-items: center;
}

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

.nav-list {
 display: flex;
 align-items: center;
 list-style: none;
 gap: 2rem;
}

.nav-link {
 font-weight: 500;
 color: var(--text-dark);
 position: relative;
 padding: 0.5rem 0;
}

.nav-link::after {
 content: '';
 position: absolute;
 bottom: 0;
 left: 0;
 width: 0;
 height: 2px;
 background-color: var(--primary-color);
 transition: var(--transition);
}

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

.nav-cta {
 display: none;
}

@media (min-width: 992px) {
 .nav-cta {
 display: inline-block;
 }
}

.nav-toggle {
 display: block;
 font-size: 1.5rem;
 cursor: pointer;
 background: none;
 border: none;
}

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

@media (min-width: 992px) {
 .nav-toggle {
 display: none;
 }
}

@media (max-width: 991px) {
 .nav-menu {
 position: fixed;
 top: 70px;
 right: -100%;
 width: 100%;
 height: calc(100% - 70px);
 background-color: var(--bg-white);
 padding: 2rem;
 transition: 0.3s;
 }

 .nav-list {
 flex-direction: column;
 gap: 2.5rem;
 text-align: center;
 }

 .nav-menu.active {
 right: 0;
 }
}

/* --- Buttons --- */
.btn {
 display: inline-block;
 padding: 0.75rem 1.5rem;
 border-radius: var(--radius);
 font-weight: 600;
 text-align: center;
 transition: var(--transition);
 border: 2px solid transparent;
}

.btn-primary {
 background-color: var(--primary-color);
 color: white;
}
.btn-primary:hover {
 background-color: var(--primary-dark);
 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-white {
 background-color: var(--bg-white);
 color: var(--primary-color);
}
.btn-white:hover {
 background-color: var(--bg-light);
 color: var(--primary-dark);
}
.btn-sm {
 padding: 0.5rem 1rem;
 font-size: 0.875rem;
}

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

.hero::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
}

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

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

.hero-subtitle {
 font-size: clamp(1rem, 2vw, 1.25rem);
 color: rgba(255, 255, 255, 0.9);
 margin-bottom: 2rem;
}

.hero-buttons {
 display: flex;
 gap: 1rem;
 justify-content: center;
}

/* --- Features Grid --- */
.features-grid .feature-card {
 background-color: var(--bg-white);
 padding: 2rem;
 border-radius: var(--radius);
 text-align: center;
 box-shadow: var(--shadow-sm);
 transition: var(--transition);
}

.features-grid .feature-card:hover {
 transform: translateY(-5px);
 box-shadow: var(--shadow-md);
}

.feature-icon {
 display: inline-flex;
 justify-content: center;
 align-items: center;
 width: 60px;
 height: 60px;
 border-radius: 50%;
 background-color: var(--primary-color);
 color: white;
 margin-bottom: 1.5rem;
}

.feature-icon svg {
 width: 30px;
 height: 30px;
}

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

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

/* --- Media Object --- */
.media-object {
 display: grid;
 gap: 3rem;
 align-items: center;
}

@media (min-width: 992px) {
 .media-object {
 grid-template-columns: 1fr 1fr;
 }
}

.media-object + .media-object {
 margin-top: 5rem;
}

.media-object.reverse .media-visual {
 order: 2;
}

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

.media-title {
 font-size: 1.75rem;
 margin-bottom: 1rem;
}

.media-content p {
 color: var(--text-light);
 margin-bottom: 1.5rem;
}

/* --- CTA Banner --- */
.cta-banner {
 background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
 color: white;
 padding: 4rem 2rem;
 border-radius: var(--radius);
 text-align: center;
}

.cta-title {
 color: white;
 font-size: 2rem;
 margin-bottom: 1rem;
}

.cta-text {
 color: rgba(255, 255, 255, 0.9);
 margin-bottom: 2rem;
 max-width: 600px;
 margin-left: auto;
 margin-right: auto;
}

/* --- Footer --- */
.footer {
 background-color: #1c2331;
 color: #a0a0a0;
 padding-top: 60px;
 font-size: 0.9rem;
}

.footer-grid {
 display: grid;
 gap: 2rem;
 padding-bottom: 2rem;
}

@media (min-width: 768px) {
 .footer-grid {
 grid-template-columns: repeat(2, 1fr);
 }
}

@media (min-width: 1024px) {
 .footer-grid {
 grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
 }
}

.footer-logo {
 display: block;
 font-size: 1.5rem;
 font-weight: 700;
 color: white;
 margin-bottom: 1rem;
}

.footer-description {
 max-width: 300px;
}

.footer-heading {
 color: white;
 font-size: 1rem;
 font-weight: 600;
 margin-bottom: 1.5rem;
 text-transform: uppercase;
}

.footer-links, .footer-contact {
 list-style: none;
}

.footer-links li, .footer-contact li {
 margin-bottom: 0.75rem;
}

.footer-links a, .footer-contact a {
 color: #a0a0a0;
}
.footer-links a:hover, .footer-contact a:hover {
 color: white;
 padding-left: 5px;
}

.footer-contact li {
 display: flex;
 align-items: flex-start;
 gap: 10px;
}
.footer-contact svg {
 width: 18px;
 height: 18px;
 flex-shrink: 0;
 margin-top: 4px;
 color: var(--secondary-color);
}

.footer-bottom {
 border-top: 1px solid rgba(255, 255, 255, 0.1);
 padding: 1.5rem 0;
 display: flex;
 justify-content: space-between;
 align-items: center;
 flex-wrap: wrap;
 gap: 1rem;
}

.footer-copyright {
 color: #707070;
}

.footer-legal {
 display: flex;
 gap: 1.5rem;
 list-style: none;
}

.footer-legal a {
 color: #707070;
 font-size: 0.85rem;
}
.footer-legal a:hover {
 color: white;
}

/* --- Internal Pages --- */
.page-header-section {
 padding-top: 120px;
 padding-bottom: 40px;
 text-align: center;
 background-color: var(--bg-light);
}
.page-title {
 font-size: 3rem;
 margin-bottom: 1rem;
}
.page-subtitle {
 font-size: 1.2rem;
 color: var(--text-light);
 max-width: 700px;
 margin: 0 auto;
}

.content-container {
 max-width: 900px;
}

.content-article h2 {
 font-size: 1.75rem;
 margin-top: 2.5rem;
 margin-bottom: 1rem;
 border-bottom: 2px solid var(--border-color);
 padding-bottom: 0.5rem;
}
.content-article h3 {
 font-size: 1.4rem;
 margin-top: 2rem;
 margin-bottom: 1rem;
}
.content-article p, .content-article li {
 color: var(--text-light);
 margin-bottom: 1rem;
}
.content-article ul {
 list-style-position: inside;
 padding-left: 1rem;
}
.content-article a {
 font-weight: 600;
}
.content-image {
 border-radius: var(--radius);
 margin: 2rem 0;
 max-height: 400px;
 width: 100%;
 object-fit: cover;
}
.table-container {
 overflow-x: auto;
 margin: 2rem 0;
}
table {
 width: 100%;
 border-collapse: collapse;
 text-align: left;
}
th, td {
 padding: 12px 15px;
 border: 1px solid var(--border-color);
}
th {
 background-color: var(--bg-light);
 font-weight: 600;
}
tbody tr:nth-of-type(even) {
 background-color: var(--bg-light);
}

/* --- Team Section --- */
.team-grid {
 display: grid;
 gap: 2rem;
}
@media (min-width: 576px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }

.team-card {
 text-align: center;
 padding: 1.5rem;
 border: 1px solid var(--border-color);
 border-radius: var(--radius);
 background-color: white;
}
.team-photo {
 width: 120px;
 height: 120px;
 border-radius: 50%;
 object-fit: cover;
 margin: 0 auto 1rem;
 border: 3px solid var(--border-color);
}
.team-name {
 font-size: 1.25rem;
 margin-bottom: 0.25rem;
}
.team-role {
 color: var(--primary-color);
 font-weight: 600;
 margin-bottom: 0.5rem;
}
.team-bio {
 font-size: 0.9rem;
 color: var(--text-light);
}

/* --- Contact Page --- */
.contact-grid {
 display: grid;
 gap: 3rem;
 align-items: flex-start;
}
@media (min-width: 992px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-heading {
 font-size: 1.75rem;
 margin-bottom: 2rem;
}

.form-group {
 margin-bottom: 1.5rem;
}
.form-label {
 display: block;
 font-weight: 600;
 margin-bottom: 0.5rem;
}
.form-control {
 width: 100%;
 padding: 0.75rem 1rem;
 border: 1px solid var(--border-color);
 border-radius: var(--radius);
 font-family: inherit;
 font-size: 1rem;
}
.form-control:focus {
 outline: none;
 border-color: var(--primary-color);
 box-shadow: 0 0 0 3px rgba(13, 71, 161, 0.1);
}
textarea.form-control {
 resize: vertical;
 min-height: 120px;
}
.form-consent {
 display: flex;
 align-items: flex-start;
 gap: 0.5rem;
 font-size: 0.9rem;
 color: var(--text-light);
}
.form-consent input {
 margin-top: 5px;
}

.contact-info-list {
 list-style: none;
 display: flex;
 flex-direction: column;
 gap: 1.5rem;
}
.contact-info-item {
 display: flex;
 align-items: flex-start;
 gap: 1rem;
}
.contact-info-item svg {
 width: 24px;
 height: 24px;
 color: var(--primary-color);
 flex-shrink: 0;
 margin-top: 5px;
}
.contact-info-item p {
 margin: 0;
 color: var(--text-light);
}
.contact-info-item strong {
 display: block;
 margin-bottom: 0.25rem;
}
.map-container {
 margin-top: 2rem;
 border-radius: var(--radius);
 overflow: hidden;
 height: 250px;
}

/* --- Thank You Page --- */
.thank-you-section {
 padding-top: 120px;
 min-height: 60vh;
 display: flex;
 align-items: center;
 justify-content: center;
}
.text-center { text-align: center; }
.thank-you-icon {
 font-size: 4rem;
 color: var(--primary-color);
 margin-bottom: 1rem;
}
.thank-you-icon svg {
 width: 80px;
 height: 80px;
 display: inline-block;
}

/* Cookie Banner */
.cookie-banner {
 position: fixed;
 bottom: 0;
 left: 0;
 width: 100%;
 background-color: #1c2331;
 color: white;
 padding: 1rem;
 display: none;
 align-items: center;
 justify-content: space-between;
 gap: 1rem;
 z-index: 1001;
 flex-wrap: wrap;
}
.cookie-banner p {
 margin: 0;
 flex-grow: 1;
 font-size: 0.9rem;
}
.cookie-buttons {
 display: flex;
 gap: 0.5rem;
 flex-shrink: 0;
}