:root {
 --primary-color: #c53030;
 --primary-color-rgb: 197, 48, 48;
 --secondary-color: #9b2c2c;
 --accent-color: #e53e3e;
 --heading-color: #1a202c;
 --text-color: #4a5568;
 --text-muted: #718096;
 --bg-color: #f7fafc;
 --bg-light: #fff5f5;
 --white: #ffffff;
 --light-gray: #fff5f5;
 --border-color: #feb2b2;
 --shadow-sm: 2px 2px 0 rgba(0,0,0,0.1);
 --shadow-md: 4px 4px 0 rgba(0,0,0,0.15);
 --shadow-lg: 8px 8px 0 rgba(0,0,0,0.2);
 --radius-sm: 4px;
 --radius-md: 8px;
 --radius-lg: 12px;
 --transition: all 0.3s ease;
 --font-family-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
 --font-family-heading: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after {
 box-sizing: border-box;
 margin: 0;
 padding: 0;
}

html {
 scroll-behavior: smooth;
 font-size: 16px;
}

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

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

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

a {
 color: var(--accent-color);
 text-decoration: none;
 transition: var(--transition);
}
a:hover { text-decoration: underline; }

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

/* FORM ELEMENTS - ALWAYS STYLED, NEVER PLAIN */
input, select, textarea {
 font-family: var(--font-family-body);
 font-size: 1rem;
 padding: 12px 16px;
 border: 1px solid var(--border-color);
 border-radius: var(--radius-sm);
 background: var(--white);
 color: var(--text-color);
 transition: var(--transition);
 width: 100%;
 box-sizing: border-box;
}

input:focus, select:focus, textarea:focus {
 outline: none;
 border-color: var(--accent-color);
 box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

input::placeholder, textarea::placeholder {
 color: var(--text-muted);
}

select {
 appearance: none;
 background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23718096' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
 background-repeat: no-repeat;
 background-position: right 12px center;
 padding-right: 36px;
 cursor: pointer;
}

textarea {
 min-height: 120px;
 resize: vertical;
}

/* Form layouts */
.form-group {
 margin-bottom: 20px;
}

.form-group label {
 display: block;
 margin-bottom: 8px;
 font-weight: 600;
 color: var(--heading-color);
}

.form-row {
 display: flex;
 gap: 16px;
 flex-wrap: wrap;
}

.form-row .form-group {
 flex: 1;
 min-width: 200px;
}

/* Search forms */
.search-form, .filter-form {
 display: flex;
 gap: 12px;
 flex-wrap: wrap;
 align-items: center;
}

.search-form input[type="search"],
.search-form input[type="text"] {
 flex: 1;
 min-width: 250px;
}

.search-form select,
.filter-form select {
 min-width: 180px;
 width: auto;
}

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

/* HEADER & NAVIGATION */
.header {
 background-color: var(--white);
 padding: 1rem 0;
 position: sticky;
 top: 0;
 z-index: 1000;
 box-shadow: var(--shadow-sm);
 border-bottom: 1px solid var(--border-color);
}

.nav, .nav-container {
 display: flex;
 justify-content: space-between;
 align-items: center;
 max-width: 1200px;
 margin: 0 auto;
 padding: 0 20px;
}

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

.nav-links {
 list-style: none;
 display: flex;
 gap: 1.5rem;
}

.nav-links a {
 color: var(--heading-color);
 font-weight: 600;
 font-size: 0.95rem;
 text-decoration: none;
 position: relative;
 padding: 0.5rem 0;
}

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

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

.hamburger-menu, .nav-toggle {
 display: none;
 cursor: pointer;
 background: none;
 border: none;
 padding: 8px;
}

.hamburger-menu .bar, .nav-toggle span {
 display: block;
 width: 25px;
 height: 3px;
 margin: 5px 0;
 background-color: var(--primary-color);
 transition: var(--transition);
}

/* HERO SECTION */
.hero {
 position: relative;
 min-height: 70vh;
 max-height: 85vh;
 background-size: cover;
 background-position: center;
 display: flex;
 align-items: center;
 justify-content: center;
 color: var(--white);
}

.hero::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 background: rgba(22, 33, 62, 0.6);
 z-index: 1;
}

.hero-content {
 position: relative;
 z-index: 2;
 text-align: center;
 max-width: 800px;
 padding: 0 20px;
}

.hero-title {
 font-size: clamp(2rem, 6vw, 4rem);
 font-weight: 800;
 margin-bottom: 1rem;
}

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

/* IMAGES - CONSTRAINED */
.card-image, .service-card img, .feature-img {
 width: 100%;
 height: 200px;
 object-fit: cover;
 border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.avatar, .team-photo, .testimonial-img {
 width: 80px;
 height: 80px;
 border-radius: 50%;
 object-fit: cover;
}

.gallery-item img {
 width: 100%;
 height: 250px;
 object-fit: cover;
}

.partner-logo, .client-logo {
 height: 40px;
 width: auto;
 max-width: 120px;
 object-fit: contain;
 filter: grayscale(100%);
 opacity: 0.7;
 transition: var(--transition);
}

.partner-logo:hover { filter: grayscale(0); opacity: 1; }

/* BUTTONS */
.btn {
 display: inline-block;
 padding: 12px 28px;
 border-radius: var(--radius-sm);
 font-weight: 600;
 text-decoration: none;
 transition: var(--transition);
 border: none;
 cursor: pointer;
}

.btn-primary {
 background-color: var(--accent-color);
 color: var(--white);
}

.btn-primary:hover {
 background-color: #1d4ed8;
 transform: translateY(-2px);
 text-decoration: none;
}

.btn-secondary {
 background: transparent;
 color: var(--accent-color);
 border: 2px solid var(--accent-color);
}

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

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

section.light, .section.light {
 background: var(--light-gray);
}

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

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

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

.section-title {
 font-size: clamp(1.8rem, 4vw, 2.8rem);
 font-weight: 800;
 margin-bottom: 16px;
}

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

/* HERO - SPLIT LAYOUT */
.page-hero, .homepage-hero {
 padding: 100px 0 80px;
 background: var(--white);
}

.hero-inner {
 max-width: 1200px;
 margin: 0 auto;
 padding: 0 20px;
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 60px;
 align-items: center;
}

.hero-copy {
 max-width: 560px;
}

.hero-copy .badge {
 display: inline-block;
 background: linear-gradient(135deg, var(--light-gray), #e8f4f8);
 color: var(--heading-color);
 padding: 8px 16px;
 border-radius: 20px;
 font-size: 0.85rem;
 font-weight: 500;
 margin-bottom: 20px;
}

.hero-copy h1 {
 font-size: clamp(2rem, 4vw, 3rem);
 font-weight: 800;
 line-height: 1.2;
 margin-bottom: 20px;
}

.hero-copy > p {
 font-size: 1.1rem;
 color: var(--text-muted);
 line-height: 1.7;
 margin-bottom: 28px;
}

.hero-actions {
 display: flex;
 gap: 16px;
 flex-wrap: wrap;
 margin-bottom: 28px;
}

.cta-button {
 display: inline-block;
 background: var(--accent-color);
 color: var(--white);
 padding: 14px 28px;
 border-radius: var(--radius-sm);
 font-weight: 600;
 text-decoration: none;
 transition: var(--transition);
}

.cta-button:hover {
 background: #1d4ed8;
 transform: translateY(-2px);
 text-decoration: none;
}

.button-outline {
 display: inline-block;
 background: transparent;
 color: var(--accent-color);
 padding: 14px 28px;
 border: 2px solid var(--accent-color);
 border-radius: var(--radius-sm);
 font-weight: 600;
 text-decoration: none;
 transition: var(--transition);
}

.button-outline:hover {
 background: var(--accent-color);
 color: var(--white);
 text-decoration: none;
}

/* TAG PILLS / FILTER BUTTONS - THEMED STYLING */
.tag-pills {
 display: flex;
 gap: 10px;
 flex-wrap: wrap;
 margin-top: 24px;
}

.tag-pills span {
 font-family: var(--font-family-body);
 background: linear-gradient(135deg, rgba(var(--primary-color-rgb, 37, 99, 235), 0.08) 0%, rgba(var(--primary-color-rgb, 37, 99, 235), 0.15) 100%);
 color: var(--primary-color);
 border: 1px solid rgba(var(--primary-color-rgb, 37, 99, 235), 0.25);
 padding: 8px 16px;
 border-radius: 20px;
 font-size: 0.875rem;
 font-weight: 500;
 cursor: pointer;
 transition: all 0.25s ease;
 backdrop-filter: blur(4px);
}

.tag-pills span:hover {
 background: var(--primary-color);
 color: var(--white);
 border-color: var(--primary-color);
 transform: translateY(-2px);
 box-shadow: 0 4px 12px rgba(var(--primary-color-rgb, 37, 99, 235), 0.25);
}

.tag-pills span.active {
 background: var(--primary-color);
 color: var(--white);
 border-color: var(--primary-color);
}

/* FILTER TABS - Alternative styled tabs for filtering */
.filter-tabs, .category-tabs, .service-tabs {
 display: flex;
 gap: 8px;
 flex-wrap: wrap;
 padding: 6px;
 background: var(--bg-light);
 border-radius: 12px;
 border: 1px solid var(--border-color);
}

.filter-tabs button, .category-tabs button, .service-tabs button,
.filter-tabs a, .category-tabs a, .service-tabs a {
 font-family: var(--font-family-body);
 background: transparent;
 color: var(--text-muted);
 border: none;
 padding: 10px 20px;
 border-radius: 8px;
 font-size: 0.9rem;
 font-weight: 500;
 cursor: pointer;
 transition: all 0.25s ease;
 text-decoration: none;
}

.filter-tabs button:hover, .category-tabs button:hover, .service-tabs button:hover,
.filter-tabs a:hover, .category-tabs a:hover, .service-tabs a:hover {
 background: rgba(var(--primary-color-rgb, 37, 99, 235), 0.1);
 color: var(--primary-color);
}

.filter-tabs button.active, .category-tabs button.active, .service-tabs button.active,
.filter-tabs a.active, .category-tabs a.active, .service-tabs a.active {
 background: var(--primary-color);
 color: var(--white);
 box-shadow: 0 2px 8px rgba(var(--primary-color-rgb, 37, 99, 235), 0.3);
}

/* BADGE/CHIP STYLING */
.badge, .chip, .tag {
 font-family: var(--font-family-body);
 display: inline-block;
 padding: 6px 14px;
 font-size: 0.75rem;
 font-weight: 600;
 text-transform: uppercase;
 letter-spacing: 0.5px;
 border-radius: 6px;
 background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
 color: var(--white);
}

.badge.outline, .chip.outline, .tag.outline {
 background: transparent;
 border: 1px solid var(--primary-color);
 color: var(--primary-color);
}

.badge.secondary, .chip.secondary, .tag.secondary {
 background: var(--bg-light);
 color: var(--text-muted);
}

/* HERO VISUAL - PREVENT IMAGE OVERLAP */
.hero-visual {
 position: relative;
 overflow: hidden;
 border-radius: var(--radius-lg);
 z-index: 1;
 isolation: isolate;
}

.hero-visual img {
 position: relative !important;
 display: block;
 width: 100%;
 max-width: 820px;
 height: auto;
 max-height: 580px;
 object-fit: cover;
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-lg);
 z-index: 1;
}

/* Prevent any absolute positioned elements inside hero-visual */
.hero-visual::before,
.hero-visual::after {
 display: none !important;
}

.hero-visual * {
 position: relative !important;
}

/* STATS SECTION */
.stats-highlight {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 60px;
 align-items: start;
}

.highlight-list {
 list-style: none;
 padding: 0;
 margin: 0;
}

.highlight-list li {
 position: relative;
 padding-left: 28px;
 margin-bottom: 20px;
 line-height: 1.7;
 color: var(--text-color);
}

.highlight-list li::before {
 content: '';
 position: absolute;
 left: 0;
 top: 8px;
 width: 8px;
 height: 8px;
 background: var(--accent-color);
 border-radius: 50%;
}

.stats-numbers {
 display: grid;
 gap: 24px;
}

.stat-number {
 font-size: clamp(2rem, 4vw, 3rem);
 font-weight: 800;
 color: var(--accent-color);
 line-height: 1;
 margin-bottom: 8px;
}

.stat-caption {
 font-size: 0.95rem;
 color: var(--text-muted);
}

/* FEATURED GRID */
.featured-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
 gap: 24px;
}

.featured-grid .card {
 background: var(--white);
 padding: 28px;
 border-radius: var(--radius-md);
 border: 1px solid var(--border-color);
 transition: var(--transition);
}

.featured-grid .card:hover {
 box-shadow: var(--shadow-md);
 transform: translateY(-4px);
}

.featured-grid .card h3 {
 font-size: 1.15rem;
 font-weight: 700;
 margin-bottom: 12px;
}

.featured-grid .card p {
 color: var(--text-muted);
 line-height: 1.6;
 margin-bottom: 16px;
}

.card-meta {
 font-size: 0.85rem;
 color: var(--accent-color);
 font-weight: 500;
}

/* MEDIA OBJECT */
.media-object {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 60px;
 align-items: center;
}

.media-copy {
 max-width: 520px;
}

.media-copy h3 {
 font-size: clamp(1.5rem, 3vw, 2rem);
 font-weight: 700;
 margin-bottom: 16px;
}

.media-copy > p {
 color: var(--text-muted);
 line-height: 1.7;
 margin-bottom: 20px;
}

.media-copy ul {
 list-style: none;
 padding: 0;
 margin: 0 0 24px;
}

.media-copy ul li {
 position: relative;
 padding-left: 24px;
 margin-bottom: 12px;
 line-height: 1.6;
}

.media-copy ul li::before {
 content: '';
 position: absolute;
 left: 0;
 top: 8px;
 width: 6px;
 height: 6px;
 background: var(--accent-color);
 border-radius: 50%;
}

.cta-buttons {
 display: flex;
 gap: 16px;
 flex-wrap: wrap;
}

/* MEDIA VISUAL - PREVENT IMAGE OVERLAP */
.media-visual {
 position: relative;
 overflow: hidden;
 border-radius: var(--radius-lg);
 z-index: 1;
 isolation: isolate;
}

.media-visual img {
 position: relative !important;
 display: block;
 width: 100%;
 max-width: 760px;
 height: auto;
 max-height: 560px;
 object-fit: cover;
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-md);
 z-index: 1;
}

/* Prevent any absolute positioned elements inside media-visual */
.media-visual::before,
.media-visual::after {
 display: none !important;
}

.media-visual * {
 position: relative !important;
}

/* TIMELINE */
.timeline {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
 gap: 32px;
}

.timeline-step {
 position: relative;
 padding: 24px;
 background: var(--white);
 border-radius: var(--radius-md);
 border: 1px solid var(--border-color);
}

.timeline-step h3 {
 font-size: 1.1rem;
 font-weight: 700;
 margin-bottom: 12px;
 color: var(--heading-color);
}

.timeline-step p {
 color: var(--text-muted);
 line-height: 1.6;
}

/* FORM CARD */
.form-card {
 background: var(--white);
 padding: 40px;
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-md);
 max-width: 700px;
 margin: 0 auto;
}

.form-grid {
 display: flex;
 flex-direction: column;
 gap: 20px;
}

.form-grid.two-columns {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 20px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
 .hero-inner, .media-object, .stats-highlight {
 grid-template-columns: 1fr;
 gap: 40px;
 }
 
 .form-grid.two-columns {
 grid-template-columns: 1fr;
 }
}

/* CARDS & GRIDS */
.cards-grid, .grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
 gap: 30px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
 background: var(--white);
 border-radius: var(--radius-lg);
 overflow: visible;
 box-shadow: var(--shadow-md);
 transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
 transform: translateY(-8px);
 box-shadow: var(--shadow-lg);
}

.card-body {
 padding: 24px;
 overflow: visible;
}

.card-title {
 font-size: 1.25rem;
 font-weight: 700;
 margin-bottom: 12px;
 color: var(--heading-color);
 word-wrap: break-word;
 overflow-wrap: break-word;
 hyphens: auto;
}

.card-text {
 color: var(--text-muted);
 line-height: 1.6;
 font-size: 0.95rem;
 word-wrap: break-word;
 overflow-wrap: break-word;
}

/* FORMS */
.form-group {
 margin-bottom: 1.5rem;
}

.form-group label {
 display: block;
 font-weight: 600;
 margin-bottom: 0.5rem;
 color: var(--heading-color);
}

.form-control {
 width: 100%;
 padding: 12px 16px;
 border: 1px solid var(--border-color);
 border-radius: var(--radius-sm);
 font-size: 1rem;
 font-family: inherit;
 transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
 outline: none;
 border-color: var(--accent-color);
 box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

textarea.form-control {
 min-height: 150px;
 resize: vertical;
}

/* FOOTER */
.footer {
 background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
 color: #e0e0e0;
 padding: 60px 0 30px;
 margin-top: 80px;
}

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

.footer-grid {
 display: grid;
 grid-template-columns: 2fr 1fr 1fr 1.5fr;
 gap: 40px;
 margin-bottom: 40px;
}

.footer-brand {
 max-width: 280px;
}

.footer-logo {
 font-size: 1.5rem;
 font-weight: 700;
 color: var(--white);
 margin-bottom: 16px;
 display: block;
}

.footer-description {
 font-size: 0.9rem;
 line-height: 1.6;
 color: #a0a0a0;
 margin-bottom: 20px;
}

.footer-heading {
 font-size: 1rem;
 font-weight: 600;
 color: var(--white);
 margin-bottom: 20px;
 text-transform: uppercase;
 letter-spacing: 1px;
}

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

.footer-links li {
 margin-bottom: 12px;
}

.footer-links a {
 color: #a0a0a0;
 text-decoration: none;
 font-size: 0.9rem;
 transition: color 0.2s ease;
}

.footer-links a:hover {
 color: var(--white);
}

.footer-contact-item {
 display: flex;
 align-items: flex-start;
 gap: 12px;
 margin-bottom: 16px;
 font-size: 0.9rem;
 color: #a0a0a0;
}

.footer-contact-item svg {
 width: 18px;
 height: 18px;
 flex-shrink: 0;
 color: var(--accent-color);
}

.footer-social {
 display: flex;
 gap: 12px;
 margin-top: 20px;
}

.footer-social a {
 width: 40px;
 height: 40px;
 border-radius: 50%;
 background: rgba(255,255,255,0.1);
 display: flex;
 align-items: center;
 justify-content: center;
 color: var(--white);
 transition: var(--transition);
}

.footer-social a:hover {
 background: var(--accent-color);
 transform: translateY(-3px);
}

.footer-divider {
 height: 1px;
 background: rgba(255,255,255,0.1);
 margin: 30px 0;
}

.footer-bottom {
 display: flex;
 justify-content: space-between;
 align-items: center;
 flex-wrap: wrap;
 gap: 16px;
}

.footer-copyright {
 font-size: 0.85rem;
 color: #707070;
}

.footer-legal-links {
 display: flex;
 gap: 24px;
}

.footer-legal-links a {
 font-size: 0.85rem;
 color: #707070;
 text-decoration: none;
}

.footer-legal-links a:hover {
 color: var(--white);
}

.disclaimer-section {
 color: #707070;
 font-size: 0.8rem;
 line-height: 1.5;
 padding-top: 20px;
}

/* LEGAL PAGES */
.legal-content {
 background: var(--white);
 padding: 40px;
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-md);
}

.legal-content h2 {
 font-size: 1.6rem;
 margin-top: 2rem;
 margin-bottom: 1rem;
 border-bottom: 2px solid var(--border-color);
 padding-bottom: 0.5rem;
}

.legal-content p, .legal-content ul {
 font-size: 1rem;
 line-height: 1.7;
 margin-bottom: 1rem;
}

/* ANIMATIONS */
.fade-in {
 opacity: 0;
 transform: translateY(20px);
 transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.is-visible {
 opacity: 1;
 transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 992px) {
 .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
 .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
 .nav-toggle, .hamburger-menu { display: block; }
 .nav-links {
 position: fixed;
 top: 70px;
 left: -100%;
 width: 100%;
 height: calc(100vh - 70px);
 background-color: var(--white);
 flex-direction: column;
 align-items: center;
 padding-top: 2rem;
 transition: left 0.3s ease;
 gap: 1rem;
 }
 .nav-links.active { left: 0; }
 .hamburger-menu.active .bar:nth-child(2) { opacity: 0; }
 .hamburger-menu.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
 .hamburger-menu.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

@media (max-width: 576px) {
 .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
 .footer-grid { grid-template-columns: 1fr; text-align: center; }
 .footer-brand { max-width: 100%; }
 .footer-bottom { flex-direction: column; text-align: center; }
 .footer-social { justify-content: center; }
}

/* COOKIE BANNER */
#cookie-banner {
 position: fixed;
 bottom: 0;
 left: 0;
 right: 0;
 background-color: rgba(0,0,0,0.95);
 color: var(--white);
 padding: 1.5rem;
 z-index: 10000;
 display: none;
}

/* TWO COLUMN LAYOUTS */
.two-col-section, .two-column-layout {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 3rem;
 align-items: center;
}

.two-col-section.reverse .two-col-image,
.two-column-layout.reverse .column-image {
 order: -1;
}

.two-col-image img, .column-image img {
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-lg);
 width: 100%;
 height: auto;
}

.about-image {
 max-width: 500px;
 width: 100%;
 height: 350px;
 object-fit: cover;
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-lg);
}

/* ARTICLE STYLES */
.article-content {
 max-width: 800px;
 margin: 0 auto;
}

.article-header {
 text-align: center;
 margin-bottom: 3rem;
}

.article-title {
 font-size: clamp(2rem, 6vw, 3.5rem);
 font-weight: 800;
 margin-bottom: 1rem;
}

.article-subtitle {
 font-size: 1.3rem;
 color: var(--text-muted);
 line-height: 1.5;
}

.article-hero-image {
 width: 100%;
 height: auto;
 max-height: 500px;
 object-fit: cover;
 border-radius: var(--radius-lg);
 margin: 2rem 0 3rem;
 box-shadow: var(--shadow-lg);
}

.article-body {
 font-size: 1.1rem;
 line-height: 1.8;
}

.article-body h2 {
 font-size: 1.8rem;
 margin: 2.5rem 0 1rem;
}

.article-body h3 {
 font-size: 1.4rem;
 margin: 2rem 0 1rem;
}

.article-body p, .article-body ul, .article-body ol {
 margin-bottom: 1.5rem;
}

.article-body blockquote {
 border-left: 4px solid var(--accent-color);
 padding-left: 1.5rem;
 margin: 2rem 0;
 font-style: italic;
 font-size: 1.2rem;
 color: var(--heading-color);
}

.article-meta {
 margin-top: auto;
 font-size: 0.85rem;
 color: var(--text-muted);
}

/* PAGE HEADER */
.page-header {
 background: var(--primary-color);
 color: var(--white);
 padding: 5rem 0;
 text-align: center;
}

.page-title {
 font-size: clamp(2.2rem, 5vw, 3.5rem);
 font-weight: 800;
 color: var(--white);
 margin-bottom: 0.5rem;
}

.page-subtitle {
 font-size: 1.1rem;
 color: rgba(255,255,255,0.8);
 max-width: 600px;
 margin: 0 auto;
}

/* TABLES */
table {
 width: 100%;
 border-collapse: collapse;
 margin: 30px 0;
 font-size: 0.95rem;
 background-color: var(--white);
 border: 1px solid var(--border-color);
 border-radius: var(--radius-md);
 overflow: hidden;
}

thead {
 background: var(--light-gray);
}

th, td {
 padding: 15px 20px;
 text-align: left;
 border-bottom: 1px solid var(--border-color);
}

tbody tr:last-child td {
 border-bottom: none;
}

tbody tr:hover {
 background: var(--light-gray);
}

/* THANK YOU PAGE */
.thank-you-section {
 min-height: 60vh;
 display: flex;
 flex-direction: column;
 align-items: center;
 justify-content: center;
 text-align: center;
 padding: 80px 20px;
}

.thank-you-icon {
 width: 80px;
 height: 80px;
 background: var(--accent-color);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 margin-bottom: 30px;
 color: var(--white);
 font-size: 2.5rem;
}

/* CONTACT GRID */
.contact-grid {
 display: grid;
 grid-template-columns: 1fr 1.5fr;
 gap: 3rem;
 background-color: var(--white);
 padding: 3rem;
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-md);
}

.contact-info h2 { margin-bottom: 1.5rem; }
.contact-info p { color: var(--text-muted); margin-bottom: 2rem; }

.contact-details li {
 list-style: none;
 display: flex;
 align-items: flex-start;
 gap: 1rem;
 margin-bottom: 1.5rem;
}

.contact-details .icon {
 color: var(--accent-color);
 font-size: 1.5rem;
}

/* MAP CONTAINER */
.map-container {
 width: 100%;
 height: 450px;
 border-radius: var(--radius-lg);
 overflow: hidden;
 box-shadow: var(--shadow-md);
 margin-top: 4rem;
}

.map-container iframe { 
 width: 100%; 
 height: 100%; 
 border: none; 
}

/* DISCLAIMER SECTION */
.disclaimer-section {
 background-color: var(--light-gray);
 color: var(--text-muted);
 padding: 20px 30px;
 margin: 3rem auto;
 border-radius: var(--radius-md);
 text-align: center;
 font-size: 0.85rem;
 line-height: 1.6;
 max-width: 900px;
}

.disclaimer-section strong {
 display: block;
 margin-bottom: 8px;
 color: var(--heading-color);
}

/* ADDITIONAL RESPONSIVE */
@media (max-width: 992px) {
 .two-col-section, .two-column-layout {
 grid-template-columns: 1fr;
 gap: 2rem;
 }
 .two-col-section.reverse .two-col-image,
 .two-column-layout.reverse .column-image {
 order: 0;
 }
 .contact-grid {
 grid-template-columns: 1fr;
 }
}

@media (max-width: 768px) {
 .map-container { height: 350px; }
 .contact-grid { padding: 2rem; }
}

/* CATEGORY LIST - STYLED CARDS */
.category-list, .services-list, .features-list, .sector-list {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
 gap: 24px;
 list-style: none;
 padding: 0;
 margin: 0;
}

.category-item, .service-item, .feature-item, .sector-item {
 background: var(--white);
 border-radius: 12px;
 padding: 24px;
 box-shadow: 0 2px 10px rgba(0,0,0,0.06);
 border-left: 4px solid var(--accent-color);
 transition: all 0.3s ease;
}

.category-item:hover, .service-item:hover, .feature-item:hover, .sector-item:hover {
 transform: translateX(8px);
 box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.category-item h3, .service-item h3, .feature-item h3, .sector-item h3 {
 font-size: 1.2rem;
 font-weight: 600;
 margin-bottom: 8px;
 color: var(--heading-color);
}

.category-item p, .service-item p, .feature-item p, .sector-item p {
 font-size: 0.95rem;
 color: var(--text-muted);
 line-height: 1.5;
 margin: 0;
}

.category-item a, .service-item a, .feature-item a, .sector-item a {
 color: var(--accent-color);
 text-decoration: none;
}

.category-item a:hover, .service-item a:hover {
 text-decoration: underline;
}

/* NEWSLETTER/CTA SECTIONS - PROPERLY STYLED */
.newsletter-section, .cta-section, .subscribe-section {
 background: linear-gradient(135deg, var(--light-gray) 0%, #e8f4f8 100%);
 padding: 60px 20px;
 text-align: center;
 border-radius: 0;
}

.newsletter-section h2, .cta-section h2, .subscribe-section h2 {
 font-size: clamp(1.5rem, 3vw, 2rem);
 margin-bottom: 12px;
}

.newsletter-section p, .cta-section p, .subscribe-section p {
 color: var(--text-muted);
 margin-bottom: 24px;
 max-width: 500px;
 margin-left: auto;
 margin-right: auto;
}

.newsletter-form, .subscribe-form {
 display: flex;
 gap: 12px;
 max-width: 500px;
 margin: 0 auto;
 flex-wrap: wrap;
 justify-content: center;
}

.newsletter-form input, .subscribe-form input {
 flex: 1;
 min-width: 250px;
 padding: 14px 20px;
 border: 1px solid var(--border-color);
 border-radius: var(--radius-sm);
 font-size: 1rem;
 background: var(--white);
}

.newsletter-form input:focus, .subscribe-form input:focus {
 outline: none;
 border-color: var(--accent-color);
 box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.newsletter-form button, .subscribe-form button {
 padding: 14px 28px;
 background: var(--accent-color);
 color: var(--white);
 border: none;
 border-radius: var(--radius-sm);
 font-weight: 600;
 cursor: pointer;
 transition: all 0.3s ease;
}

.newsletter-form button:hover, .subscribe-form button:hover {
 background: #1d4ed8;
 transform: translateY(-2px);
}

/* PREVENT OVERSIZED IMAGES */
section img:not(.avatar):not(.partner-logo):not(.client-logo):not(.testimonial-img):not(.team-photo) {
 max-height: 400px;
}

/* CONSISTENT SECTION BACKGROUNDS */
.bg-light, .section-light {
 background: var(--light-gray);
}

.bg-dark, .section-dark {
 background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
 color: #e0e0e0;
}

.bg-dark h2, .bg-dark h3, .section-dark h2, .section-dark h3 {
 color: var(--white);
}

@media (max-width: 576px) {
 .newsletter-form, .subscribe-form {
 flex-direction: column;
 }
 .newsletter-form input, .subscribe-form input {
 min-width: 100%;
 }
 .category-list, .services-list, .features-list {
 grid-template-columns: 1fr;
 }
}

/* ===== SITE-SPECIFIC STYLES ===== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap');

:root {
 --primary-color: #1a365d; /* Midnight Navy */
 --primary-dark: #11243e;
 --secondary-color: #d69e2e; /* Gold Accent */
 --accent-color: #a0aec0; /* Silver */
 
 --text-dark: #2d3748;
 --text-light: #718096;
 --bg-light: #f7fafc;
 --bg-white: #ffffff;
 --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;

 --transition: all 0.3s ease-in-out;
 --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* --- BASE & TYPOGRAPHY --- */
*, *::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;
 -moz-osx-font-smoothing: grayscale;
}

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(2rem, 4vw, 2.75rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

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);
}

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

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

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

/* --- HEADER --- */
.header {
 position: fixed;
 top: 0;
 left: 0;
 right: 0;
 z-index: 1000;
 background-color: rgba(255, 255, 255, 0.9);
 backdrop-filter: blur(10px);
 -webkit-backdrop-filter: blur(10px);
 border-bottom: 1px solid var(--border-color);
 transition: box-shadow 0.3s ease;
}

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

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

.nav-logo {
 font-size: 1.75rem;
 font-weight: 700;
 color: var(--primary-color);
 text-transform: lowercase;
}

.nav-links {
 display: flex;
 list-style: none;
 gap: 2.5rem;
}

.nav-links a {
 color: var(--text-dark);
 font-weight: 500;
 position: relative;
 padding: 0.5rem 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-toggle {
 display: none;
 background: none;
 border: none;
 cursor: pointer;
 z-index: 1001;
}

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

/* --- HERO --- */
.hero {
 padding-top: 140px;
 padding-bottom: 60px;
 min-height: 80vh;
 display: flex;
 align-items: center;
}
.hero-container {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 3rem;
 align-items: center;
}
.hero-title { color: var(--primary-color); }
.hero-subtitle { font-size: 1.25rem; color: var(--text-light); max-width: 550px; }
.hero-buttons { display: flex; gap: 1rem; margin-top: 2rem; }
.hero-image { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.hero-image-container { position: relative; }

.hero-subpage {
 padding-top: 140px;
 padding-bottom: 60px;
 background-color: var(--bg-light);
}

/* --- BUTTONS --- */
.btn {
 display: inline-block;
 font-weight: 600;
 font-size: 1rem;
 padding: 0.875rem 2rem;
 border-radius: var(--radius-md);
 border: 2px solid transparent;
 cursor: pointer;
 text-align: center;
 transition: var(--transition);
}
.btn-primary {
 background-color: var(--primary-color);
 color: var(--bg-white);
 border-color: var(--primary-color);
}
.btn-primary:hover {
 background-color: var(--primary-dark);
 border-color: var(--primary-dark);
 transform: translateY(-2px);
 box-shadow: var(--shadow-md);
}
.btn-secondary {
 background-color: transparent;
 color: var(--primary-color);
 border-color: var(--primary-color);
}
.btn-secondary:hover {
 background-color: var(--primary-color);
 color: var(--bg-white);
 transform: translateY(-2px);
}
.btn-card {
 display: inline-block;
 color: var(--secondary-color);
 font-weight: 600;
 margin-top: auto;
 padding-top: 1rem;
}
.btn-card:hover { color: var(--primary-dark); }
.btn-full { width: 100%; }
.btn-large { padding: 1rem 2.5rem; font-size: 1.1rem; }

/* --- SECTIONS --- */
.section { padding: 80px 0; }
.bg-light { background-color: var(--bg-light); }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 50px; }
.section-label {
 display: inline-block;
 margin-bottom: 1rem;
 padding: 0.25rem 1rem;
 font-size: 0.9rem;
 font-weight: 600;
 color: var(--secondary-color);
 background-color: #fefcbf; /* Light gold bg */
 border-radius: 999px;
 text-transform: uppercase;
 letter-spacing: 0.5px;
}
.section-title { color: var(--primary-color); }
.section-subtitle { font-size: 1.1rem; color: var(--text-light); }
.section-content { display: flex; flex-direction: column; justify-content: center; }
.section-image { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); object-fit: cover; }
.cta-section { background-image: linear-gradient(to right, var(--primary-color), var(--primary-dark)); }
.cta-section h2, .cta-section p { color: var(--bg-white); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.grid-2-reverse { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.align-center { align-items: center; }

/* --- CARDS --- */
.card {
 background-color: var(--bg-white);
 border: 1px solid var(--border-color);
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-sm);
 transition: var(--transition);
 display: flex;
 flex-direction: column;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.card-image {
 width: 100%;
 height: 200px;
 object-fit: cover;
 border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.card-body { padding: 1.5rem; display:flex; flex-direction:column; flex-grow:1; }
.card-title { font-size: 1.3rem; margin-top: 0; }
.card-text { flex-grow: 1; }

/* --- TIMELINE --- */
.timeline { position: relative; max-width: 800px; margin: 0 auto; }
.timeline::after {
 content: '';
 position: absolute;
 width: 2px;
 background-color: var(--border-color);
 top: 0;
 bottom: 0;
 left: 20px;
}
.timeline-item { position: relative; padding-left: 60px; margin-bottom: 50px; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-number {
 position: absolute;
 left: 0;
 top: 0;
 width: 42px;
 height: 42px;
 background-color: var(--secondary-color);
 color: var(--primary-dark);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 font-weight: 700;
 font-size: 1.25rem;
 z-index: 1;
}
.timeline-content h3 { font-size: 1.4rem; }

/* --- TESTIMONIALS --- */
.testimonial-card {
 background-color: var(--bg-light);
 border-left: 4px solid var(--secondary-color);
 padding: 2rem;
 border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.testimonial-text { font-style: italic; color: var(--text-dark); }
.testimonial-author { display: flex; align-items: center; gap: 1rem; margin-top: 1.5rem; }
.testimonial-author img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.author-name { margin-bottom: 0.25rem; }
.author-title { font-size: 0.9rem; color: var(--text-light); }

/* --- OVER ONS PAGE --- */
.info-box { background-color: var(--bg-white); padding: 2rem; border-radius: var(--radius-md); border: 1px solid var(--border-color); }
.value-card { text-align: center; padding: 1.5rem; border: 1px solid var(--border-color); border-radius: var(--radius-md); }
.team-card { text-align: center; }
.team-image { width: 150px; height: 150px; border-radius: 50%; object-fit: cover; margin: 0 auto 1rem; border: 4px solid var(--bg-white); box-shadow: var(--shadow-md); }
.team-name { font-size: 1.4rem; color: var(--primary-color);}
.team-title { color: var(--secondary-color); font-weight: 600; margin-bottom: 0.5rem; }
.team-bio { font-size: 0.9rem; }
.feature-list { list-style: none; padding: 0; margin-top: 1.5rem; }
.feature-list li { padding-left: 1.5rem; position: relative; margin-bottom: 0.75rem; }
.feature-list li::before {
 content: ''; color: var(--secondary-color); position: absolute; left: 0; font-weight: 700;
}

/* --- BRONNEN PAGE --- */
.resource-card {
 background-color: var(--bg-light);
 border-radius: var(--radius-md);
 padding: 1.5rem;
 text-align: center;
}
.resource-card h4 { color: var(--primary-color); }

/* --- CONTACT PAGE --- */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; }
.contact-form-container, .contact-info-container {
 background-color: var(--bg-white);
 padding: 2.5rem;
 border-radius: var(--radius-lg);
 border: 1px solid var(--border-color);
}
.form-label { display: block; margin-bottom: 0.5rem; font-weight: 600; }
.form-control {
 width: 100%;
 padding: 0.875rem 1rem;
 border: 1px solid var(--border-color);
 border-radius: var(--radius-md);
 font-family: var(--font-main);
 font-size: 1rem;
 transition: var(--transition);
}
.form-control:focus { outline: none; border-color: var(--primary-color); box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1); }
.form-group { margin-bottom: 1.5rem; }
.contact-details { list-style: none; padding: 0; }
.contact-details li { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-details svg { flex-shrink: 0; width: 24px; height: 24px; color: var(--primary-color); margin-top: 4px; }
.map-container { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.faq-item { border-bottom: 1px solid var(--border-color); }
.faq-question {
 width: 100%;
 background: none;
 border: none;
 text-align: left;
 padding: 1.5rem 0;
 font-size: 1.1rem;
 font-weight: 600;
 cursor: pointer;
 position: relative;
 padding-right: 2rem;
 color: var(--primary-color);
}
.faq-question::after { content: '+'; position: absolute; right: 0; top: 1.5rem; font-size: 1.5rem; transition: transform 0.3s ease; }
.faq-question.active::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer p { padding-bottom: 1.5rem; }

/* --- FOOTER --- */
.footer {
 background-color: var(--primary-color);
 color: #a0aec0;
 padding: 60px 0 30px;
 font-size: 0.9rem;
}
.footer a { color: #a0aec0; }
.footer a:hover { color: var(--bg-white); }
.footer-logo { color: var(--bg-white); font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; display: block; text-transform: lowercase; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 3rem; }
.footer-heading { color: var(--bg-white); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 1.5rem; font-size: 1rem;}
.footer-links, .footer-contact, .footer-legal { list-style: none; padding: 0; }
.footer-links li, .footer-contact li, .footer-legal li { margin-bottom: 0.75rem; }
.footer-social { display: flex; gap: 1rem; margin-top: 1.5rem; }
.footer-social a {
 color: var(--bg-white);
 background-color: rgba(255, 255, 255, 0.1);
 width: 40px;
 height: 40px;
 display: flex;
 align-items: center;
 justify-content: center;
 border-radius: 50%;
}
.footer-social a:hover { background-color: var(--secondary-color); }
.footer-bottom {
 border-top: 1px solid rgba(255, 255, 255, 0.1);
 padding-top: 2rem;
 display: flex;
 justify-content: space-between;
 align-items: center;
}
.footer-legal { display: flex; gap: 1.5rem; }

/* --- LEGAL PAGES --- */
.legal-page { padding-top: 120px; padding-bottom: 80px; }
.legal-page h1 { font-size: 3rem; text-align: center; margin-bottom: 1rem; }
.legal-page p:first-of-type { text-align: center; color: var(--text-light); margin-bottom: 3rem; }
.legal-page section { margin-bottom: 2rem; }
.legal-page h2 { font-size: 1.75rem; border-bottom: 2px solid var(--border-color); padding-bottom: 0.5rem; margin-bottom: 1.5rem;}
.legal-page ul { margin-left: 20px; margin-bottom: 1rem; }
.cookie-table { width: 100%; border-collapse: collapse; margin-top: 2rem; }
.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); }

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

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 992px) {
 .grid-2, .grid-3, .grid-4, .hero-container, .contact-grid { grid-template-columns: 1fr; }
 .grid-2-reverse { grid-template-columns: 1fr; }
 .grid-2-reverse > div:first-child { order: 2; }
 .grid-2-reverse > div:last-child { order: 1; }
 .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
 .nav-toggle { display: block; }
 .nav-links {
 position: fixed;
 top: 0;
 right: -100%;
 width: 60%;
 height: 100vh;
 background-color: var(--bg-white);
 flex-direction: column;
 padding: 100px 2rem 2rem;
 gap: 2rem;
 transition: right 0.4s ease-in-out;
 box-shadow: -5px 0 15px rgba(0,0,0,0.1);
 }
 .nav-links.active { right: 0; }
 .hero-container, .contact-grid, .footer-grid { gap: 2rem; }
 .footer-grid { grid-template-columns: 1fr; text-align: center; }
 .footer-social { justify-content: center; }
 .footer-bottom { flex-direction: column; gap: 1rem; }
 .cookie-banner { flex-direction: column; text-align: center; }
}