:root {
 --primary-color: #0d2c54; 
 --primary-dark: #081f3a;
 --secondary-color: #1e5a9c;
 --accent-color: #3b82f6;
 --text-dark: #212529;
 --text-light: #495057;
 --text-muted: #6c757d;
 --bg-light: #f8f9fa;
 --bg-white: #ffffff;
 --border-color: #dee2e6;
 --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
 --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.07);
 --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.1);
 --radius-sm: 4px;
 --radius-md: 8px;
 --radius-lg: 16px;
 --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;
}

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

h1, h2, h3, h4, h5, h6 {
 font-weight: 700;
 line-height: 1.3;
 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: clamp(1.25rem, 3vw, 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-dark);
 text-decoration: underline;
}

ul, ol {
 margin-bottom: 1rem;
 padding-left: 1.5rem;
}
ul li, ol li {
 margin-bottom: 0.5rem;
}

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

.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.1rem;
 color: var(--text-muted);
}

.text-center { text-align: center; }

/* Header */
.header {
 position: sticky;
 top: 0;
 left: 0;
 right: 0;
 z-index: 1000;
 background: rgba(255, 255, 255, 0.95);
 backdrop-filter: blur(10px);
 box-shadow: var(--shadow-sm);
 transition: var(--transition);
}

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

.nav-logo {
 font-size: 1.4rem;
 font-weight: 700;
 color: var(--primary-color);
 text-decoration: none;
}
.nav-logo:hover {
 text-decoration: none;
}

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

.nav-links a {
 font-weight: 500;
 color: var(--text-dark);
 padding: 8px 4px;
 position: relative;
 text-decoration: none;
}

.nav-links a::after {
 content: '';
 position: absolute;
 bottom: 0;
 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-links a.active {
 color: var(--primary-color);
 font-weight: 600;
}

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

.nav-toggle span {
 display: block;
 width: 25px;
 height: 2px;
 background: var(--text-dark);
 margin: 6px 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;
 transition: var(--transition);
 border: 2px solid transparent;
 text-align: center;
 text-decoration: none;
}
.btn:hover {
 text-decoration: none;
}

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

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

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

/* Hero Section */
.hero {
 position: relative;
 min-height: 60vh;
 padding: 100px 0;
 background-size: cover;
 background-position: center;
 display: flex;
 align-items: center;
 text-align: center;
 color: white;
}
.hero::before {
 content: '';
 position: absolute;
 inset: 0;
 background: linear-gradient(rgba(13, 44, 84, 0.8), rgba(8, 31, 58, 0.6));
}
.hero-content {
 position: relative;
 z-index: 1;
 max-width: 800px;
}
.hero-title {
 color: white;
 margin-bottom: 1.5rem;
}
.hero-subtitle {
 font-size: 1.25rem;
 color: rgba(255, 255, 255, 0.9);
 margin-bottom: 2rem;
}
.hero-buttons {
 display: flex;
 gap: 16px;
 justify-content: center;
}

/* Grid & Cards */
.grid-3 {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 30px;
}
.card {
 background: white;
 border-radius: var(--radius-md);
 box-shadow: var(--shadow-sm);
 transition: var(--transition);
 border: 1px solid var(--border-color);
}
.card:hover {
 transform: translateY(-5px);
 box-shadow: var(--shadow-md);
}
.card-body {
 padding: 30px;
}
.card-title {
 font-size: 1.3rem;
 color: var(--primary-color);
}
.card-text {
 color: var(--text-light);
}

/* Media Object */
.media-object {
 display: grid;
 grid-template-columns: 1fr 1fr;
 align-items: center;
 gap: 60px;
 margin-bottom: 80px;
}
.media-object:last-child {
 margin-bottom: 0;
}
.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);
 width: 100%;
 height: 350px;
 object-fit: cover;
}
.media-copy h3 {
 font-size: 1.8rem;
 margin-bottom: 1.5rem;
}
.media-copy p {
 margin-bottom: 1.5rem;
}

/* Testimonial/Concepts Carousel */
.testimonial-carousel {
 position: relative;
 max-width: 800px;
 margin: 0 auto;
 overflow: hidden;
}
.testimonial-slider {
 display: flex;
 transition: transform 0.5s ease-in-out;
}
.testimonial-card {
 min-width: 100%;
 padding: 40px;
 background: var(--bg-light);
 border-radius: var(--radius-lg);
 border-left: 5px solid var(--secondary-color);
}
.testimonial-text {
 font-size: 1.2rem;
 font-style: italic;
 color: var(--text-dark);
 margin-bottom: 1.5rem;
}
.author-name {
 font-size: 1rem;
 color: var(--primary-color);
 font-weight: bold;
}
.carousel-nav {
 position: absolute;
 top: 50%;
 transform: translateY(-50%);
 width: 100%;
 display: flex;
 justify-content: space-between;
 padding: 0 10px;
}
.carousel-nav button {
 background-color: rgba(255, 255, 255, 0.7);
 border: 1px solid var(--border-color);
 border-radius: 50%;
 width: 40px;
 height: 40px;
 cursor: pointer;
 font-size: 1.5rem;
 color: var(--primary-color);
}
.carousel-nav button:hover {
 background-color: white;
}

/* CTA Section */
.cta-section {
 background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
 padding: 60px 0;
 text-align: center;
 color: white;
}
.cta-title {
 color: white;
}
.cta-text {
 color: rgba(255, 255, 255, 0.8);
 max-width: 600px;
 margin: 0 auto 30px;
}

/* Footer */
.footer {
 background-color: var(--primary-dark);
 color: var(--bg-light);
 padding: 60px 0 30px;
 margin-top: 80px;
}
.footer-grid {
 display: grid;
 grid-template-columns: 2fr 1fr 1fr 1.5fr;
 gap: 40px;
 margin-bottom: 40px;
}
.footer-logo {
 font-size: 1.5rem;
 font-weight: 700;
 color: white;
 margin-bottom: 1rem;
 display: block;
}
.footer-description {
 color: #adb5bd;
 font-size: 0.9rem;
}
.footer-heading {
 font-size: 1rem;
 font-weight: 600;
 color: white;
 margin-bottom: 1.5rem;
 text-transform: uppercase;
 letter-spacing: 1px;
}
.footer-links, .footer-contact {
 list-style: none;
 padding: 0;
}
.footer-links li, .footer-contact li {
 margin-bottom: 12px;
}
.footer-links a, .footer-contact a {
 color: #adb5bd;
 text-decoration: none;
}
.footer-links a:hover, .footer-contact a:hover {
 color: white;
 text-decoration: underline;
}
.footer-contact li {
 display: flex;
 align-items: flex-start;
 gap: 10px;
}
.footer-contact svg {
 margin-top: 3px;
 flex-shrink: 0;
}
.footer-bottom {
 border-top: 1px solid rgba(255, 255, 255, 0.1);
 padding-top: 30px;
 display: flex;
 justify-content: space-between;
 align-items: center;
}
.footer-copyright {
 font-size: 0.9rem;
 color: #adb5bd;
 margin: 0;
}
.footer-social {
 display: flex;
 gap: 1rem;
}
.footer-social a {
 color: #adb5bd;
}
.footer-social a:hover {
 color: white;
}

/* Page Specific Styles */
.page-header-section {
 background: var(--primary-color);
 color: white;
 padding: 60px 0;
 text-align: center;
}
.page-header-section h1 { color: white;}
.page-subtitle {
 max-width: 800px;
 margin: 0 auto;
 font-size: 1.1rem;
 color: rgba(255,255,255,0.8);
}
.content-body {
 max-width: 800px;
}
.content-image-full {
 width: 100%;
 height: auto;
 max-height: 400px;
 object-fit: cover;
 border-radius: var(--radius-lg);
 margin-bottom: 40px;
}
.resource-list {
 list-style: none;
 padding-left: 0;
}
.resource-list li {
 background: var(--bg-light);
 border-radius: var(--radius-md);
 padding: 20px;
 margin-bottom: 20px;
 border-left: 4px solid var(--secondary-color);
}
.resource-list strong {
 font-size: 1.1rem;
}
.resource-list p { margin: 5px 0 0; }
.team-card {
 background: var(--bg-white);
 border-radius: var(--radius-lg);
 padding: 30px;
 text-align: center;
 box-shadow: var(--shadow-md);
}
.team-photo {
 width: 120px;
 height: 120px;
 border-radius: 50%;
 object-fit: cover;
 margin: 0 auto 20px;
 border: 4px solid white;
 box-shadow: var(--shadow-sm);
}

.team-name { color: var(--primary-color); font-size: 1.4rem; }
.team-title { color: var(--secondary-color); font-weight: 600; margin-bottom: 10px;}
.team-bio { font-size: 0.9rem; color: var(--text-muted); }

/* Contact Page */
.contact-grid {
 display: grid;
 grid-template-columns: 1.5fr 1fr;
 gap: 50px;
}
.contact-form-container h3, .contact-info-container h3 {
 font-size: 1.8rem;
 margin-bottom: 1rem;
}
.form-group { margin-bottom: 20px; }
.form-label { display: block; margin-bottom: 8px; font-weight: 500;}
.form-control {
 width: 100%;
 padding: 12px;
 border: 1px solid var(--border-color);
 border-radius: var(--radius-md);
 font-size: 1rem;
}
.form-control:focus { outline: 2px solid var(--secondary-color); }
textarea.form-control { min-height: 120px; resize: vertical; }
.form-check { display: flex; align-items: flex-start; gap: 10px; }
.form-check-input { margin-top: 5px; }
.form-check-label { font-size: 0.9rem; color: var(--text-muted); }

.contact-details { list-style: none; padding: 0;}
.contact-details li {
 display: flex;
 align-items: flex-start;
 gap: 15px;
 margin-bottom: 20px;
}
.contact-details svg { color: var(--secondary-color); flex-shrink: 0; }
.contact-details div strong { display: block; color: var(--primary-color); }
.contact-details div p { margin: 0; }
.map-container { margin-top: 30px; border-radius: var(--radius-md); overflow: hidden;}
.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;
}

/* Cookie Banner */
.cookie-banner {
 display: none;
 position: fixed;
 bottom: 0;
 left: 0;
 right: 0;
 background: var(--primary-dark);
 color: white;
 padding: 20px;
 justify-content: space-between;
 align-items: center;
 z-index: 1001;
 box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}
.cookie-banner p {
 margin: 0;
 color: rgba(255,255,255,0.8);
}
.cookie-banner a {
 color: white;
 text-decoration: underline;
}
.cookie-buttons button {
 background: var(--secondary-color);
 color: white;
 border: none;
 padding: 10px 20px;
 border-radius: var(--radius-md);
 cursor: pointer;
 margin-left: 10px;
}
.cookie-buttons button:last-child {
 background: var(--text-muted);
}
.cookie-buttons button:hover {
 opacity: 0.9;
}

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

@media (max-width: 768px) {
 .nav-toggle { display: block; z-index: 2; }
 .nav-cta { display: none; }
 .nav-links {
 position: fixed;
 top: 0;
 right: -100%;
 width: 60%;
 height: 100vh;
 background: white;
 flex-direction: column;
 padding-top: 100px;
 align-items: flex-start;
 padding-left: 30px;
 box-shadow: -5px 0 15px rgba(0,0,0,0.1);
 transition: right 0.4s ease-in-out;
 }
 .nav-links.active { right: 0; }
 .hero { min-height: 50vh; }
 .footer-grid { grid-template-columns: 1fr; text-align: left; }
 .footer-bottom { flex-direction: column; gap: 10px; }
 .cookie-banner { flex-direction: column; text-align: center; gap: 15px; }
}