:root {
 --primary-color: #0c4a6e;
 --primary-color-rgb: 12, 74, 110;
 --secondary-color: #075985;
 --accent-color: #38bdf8;
 --heading-color: #0c4a6e;
 --text-color: #475569;
 --text-muted: #718096;
 --bg-color: #f7fafc;
 --bg-light: #f0f9ff;
 --white: #ffffff;
 --light-gray: #f0f9ff;
 --border-color: #bae6fd;
 --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
 --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
 --shadow-lg: 0 12px 35px rgba(0,0,0,0.12);
 --radius-sm: 8px;
 --radius-md: 12px;
 --radius-lg: 20px;
 --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 ===== */

:root {
 --primary-color: #1e3a8a; /* Deep Blue for professionalism */
 --secondary-color: #3b82f6; /* Lighter Blue for accents and links */
 --accent-color: #10b981; /* Green accent for growth/success */
 --bg-color: #ffffff;
 --bg-light: #f8f9fa; /* Very light grey */
 --text-dark: #212529;
 --text-light: #6c757d;
 --border-color: #dee2e6;
 --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
 --radius: 8px;
 --transition: all 0.3s ease-in-out;
 --font-main: 'Inter', sans-serif;
}

/* --- BASE & TYPOGRAPHY --- */
*, *::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-color);
 -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-weight: 700; line-height: 1.3; margin-bottom: 1rem; }
h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(2rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }
h4 { font-size: 1.1rem; }
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); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }

/* --- BUTTONS --- */
.btn {
 display: inline-block;
 padding: 12px 28px;
 font-weight: 600;
 border-radius: var(--radius);
 border: 2px solid transparent;
 cursor: pointer;
 transition: var(--transition);
 text-align: center;
}
.btn-primary {
 background-color: var(--primary-color);
 color: #fff;
}
.btn-primary:hover {
 background-color: var(--secondary-color);
 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: #fff;
}

/* --- 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);
 box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
 transition: all 0.3s ease;
}
.header.scrolled {
 background-color: rgba(255, 255, 255, 0.98);
 box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}
.nav {
 display: flex;
 justify-content: space-between;
 align-items: center;
 height: 70px;
}
.nav-logo { font-size: 1.5rem; font-weight: 700; color: var(--text-dark); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-link {
 font-weight: 500;
 color: var(--text-dark);
 position: relative;
 padding: 5px 0;
}
.nav-link.btn { padding: 12px 28px; }
.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-link.btn::after { display: none; }
.nav-toggle { display: none; cursor: pointer; background: none; border: none; }
.nav-toggle span { display: block; width: 25px; height: 2px; background-color: var(--text-dark); margin: 5px 0; transition: var(--transition); }

/* --- HERO --- */
.hero {
 position: relative;
 min-height: 70vh;
 display: flex;
 align-items: center;
 justify-content: center;
 padding: 100px 0;
 background-image: url('https://images.pexels.com/photos/8466163/pexels-photo-8466163.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940');
 background-size: cover;
 background-position: center;
 color: #fff;
}
.hero-overlay {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background-color: rgba(30, 58, 138, 0.7); /* Deep Blue Overlay */
}
.hero-content {
 position: relative;
 max-width: 800px;
}
.hero-title {
 color: #fff;
 text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.hero-subtitle {
 font-size: 1.25rem;
 color: rgba(255, 255, 255, 0.9);
 margin-bottom: 2rem;
}
.hero-buttons .btn { margin: 0 10px; }
.hero-buttons .btn-secondary {
 color: #fff;
 border-color: #fff;
}
.hero-buttons .btn-secondary:hover {
 background-color: #fff;
 color: var(--primary-color);
}

/* --- SECTIONS --- */
.section { padding: 80px 0; }
.section.bg-light { background-color: var(--bg-light); }
.section-header { margin-bottom: 50px; max-width: 700px; margin-left: auto; margin-right: auto; }
.section-tag {
 display: inline-block;
 color: var(--primary-color);
 font-weight: 600;
 font-size: 0.9rem;
 margin-bottom: 0.5rem;
 text-transform: uppercase;
 letter-spacing: 1px;
}
.section-title { margin-bottom: 1rem; }
.section-subtitle { max-width: 600px; margin: 0 auto; color: var(--text-light); font-size: 1.1rem; }

/* --- GRIDS --- */
.grid-2, .grid-3 { display: grid; gap: 30px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

/* --- CARDS --- */
.card {
 background-color: var(--bg-color);
 border-radius: var(--radius);
 box-shadow: var(--shadow);
 overflow: hidden;
 transition: var(--transition);
 display: flex;
 flex-direction: column;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
.card-img {
 width: 100%;
 height: 200px;
 object-fit: cover;
}
.card-body { padding: 25px; flex-grow: 1; display: flex; flex-direction: column; }
.card-category { font-size: 0.85rem; font-weight: 600; color: var(--accent-color); margin-bottom: 0.5rem; }
.card-title { font-size: 1.3rem; margin-bottom: 0.75rem; color: var(--text-dark); }
.card-text { margin-bottom: 1.5rem; flex-grow: 1; }
.card-link { font-weight: 600; color: var(--secondary-color); align-self: flex-start; }
.card-link:hover { color: var(--primary-color); }

/* --- FORMS --- */
.form-group { margin-bottom: 1.5rem; }
.form-group label {
 display: block;
 font-weight: 600;
 margin-bottom: 8px;
}
.form-group input, .form-group textarea {
 width: 100%;
 padding: 14px;
 border: 1px solid var(--border-color);
 border-radius: var(--radius);
 font-family: inherit;
 font-size: 1rem;
 transition: var(--transition);
}
.form-group input:focus, .form-group textarea:focus {
 outline: none;
 border-color: var(--primary-color);
 box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.2);
}
textarea { resize: vertical; min-height: 120px; }

/* --- SPECIFIC SECTIONS --- */
.stats-grid .stat-item {
 background: var(--bg-light);
 padding: 30px;
 border-radius: var(--radius);
}
.stats-grid .stat-number { font-size: 1.5rem; font-weight: 700; color: var(--primary-color); }
.stats-grid .stat-text { color: var(--text-light); font-size: 1rem; }

.media-object {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 50px;
 align-items: center;
}
.media-object.reverse .media-image { order: 2; }
.media-object.reverse .media-content { order: 1; }
.media-image img { border-radius: var(--radius); box-shadow: var(--shadow); }
.feature-list { list-style: inside; padding-left: 0; }
.feature-list li { margin-bottom: 0.75rem; padding-left: 10px; position: relative; }
.feature-list li::before {
 content: '';
 color: var(--accent-color);
 position: absolute;
 left: -10px;
 font-weight: bold;
}

.testimonial-card { padding: 30px; background-color: var(--bg-light); border-radius: var(--radius); }
.testimonial-text { font-style: italic; color: var(--text-dark); margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 15px; }
.testimonial-avatar { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; }
.testimonial-name { margin: 0; font-size: 1.1rem; }
.testimonial-role { color: var(--text-light); }

.cta-section { background-color: var(--primary-color); color: #fff; padding: 60px 0; }
.cta-section .section-title, .cta-section .section-subtitle { color: #fff; }

.page-header-section {
 background-color: var(--bg-light);
 padding: 100px 0 60px;
 margin-top: 70px;
}

.team-card {
 text-align: center;
 padding: 20px;
}
.team-photo {
 width: 150px;
 height: 150px;
 border-radius: 50%;
 object-fit: cover;
 margin: 0 auto 1.5rem;
 box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.team-name { font-size: 1.25rem; color: var(--text-dark); margin-bottom: 0.25rem; }
.team-title { font-weight: 500; color: var(--primary-color); margin-bottom: 0.5rem; }
.team-bio { font-size: 0.9rem; }

.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: 50%;
 margin-left: -1px;
}
.timeline-item {
 padding: 10px 40px;
 position: relative;
 background-color: inherit;
 width: 50%;
}
.timeline-item:nth-child(odd) { left: 0; text-align: right; }
.timeline-item:nth-child(even) { left: 50%; }
.timeline-dot {
 content: '';
 position: absolute;
 width: 16px;
 height: 16px;
 background-color: var(--bg-color);
 border: 3px solid var(--primary-color);
 top: 24px;
 border-radius: 50%;
 z-index: 1;
}
.timeline-item:nth-child(odd) .timeline-dot { right: -8px; }
.timeline-item:nth-child(even) .timeline-dot { left: -8px; }
.timeline-title { font-size: 1.25rem; color: var(--primary-color); }

.feature-item {
 background: #fff;
 padding: 30px;
 border-radius: var(--radius);
 box-shadow: var(--shadow);
 border-left: 5px solid var(--accent-color);
}
.card.card-horizontal {
 background: var(--bg-light);
 padding: 40px;
 border-radius: var(--radius);
}
.mt-4 { margin-top: 1.5rem; }

.pagination {
 display: flex;
 justify-content: center;
 gap: 10px;
 margin-top: 40px;
}
.pagination a {
 display: flex;
 align-items: center;
 justify-content: center;
 width: 40px;
 height: 40px;
 border-radius: 50%;
 border: 1px solid var(--border-color);
 color: var(--text-dark);
}
.pagination a.active, .pagination a:hover {
 background-color: var(--primary-color);
 color: #fff;
 border-color: var(--primary-color);
}

/* --- CONTACT PAGE --- */
.contact-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 50px; }
.contact-details { list-style: none; margin-top: 2rem; }
.contact-details li { display: flex; gap: 15px; margin-bottom: 1.5rem; align-items: flex-start; }
.contact-details svg { width: 24px; height: 24px; color: var(--primary-color); flex-shrink: 0; margin-top: 4px; }
.map-section { padding-top: 0; }
.map-container { border-radius: var(--radius); overflow: hidden; height: 450px; border: 1px solid var(--border-color); box-shadow: var(--shadow); }

/* --- LEGAL PAGES --- */
.legal-content h2 { margin-top: 2.5rem; margin-bottom: 1.5rem; color: var(--primary-color); }
.legal-content h2:first-child { margin-top: 0; }
.legal-content ul { list-style-position: inside; margin-bottom: 1rem; }
.cookie-table-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.cookie-table { width: 100%; border-collapse: collapse; margin: 2rem 0;}
.cookie-table th, .cookie-table td { padding: 12px 15px; border: 1px solid var(--border-color); text-align: left; }
.cookie-table th { background-color: var(--bg-light); font-weight: 600; }

/* --- FOOTER --- */
.footer {
 background-color: var(--text-dark);
 color: #a9a9a9;
 padding: 60px 0 20px;
 margin-top: 80px;
}
.footer-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
 gap: 40px;
 margin-bottom: 40px;
}
.footer-logo { font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 1rem; display: inline-block; }
.footer-description { font-size: 0.9rem; line-height: 1.6; }
.social-links { display: flex; gap: 15px; margin-top: 1rem; }
.social-links a {
 color: #fff;
 display: flex;
 justify-content: center;
 align-items: center;
 width: 40px;
 height: 40px;
 background-color: rgba(255, 255, 255, 0.1);
 border-radius: 50%;
}
.social-links a:hover { background-color: var(--secondary-color); }
.footer-heading { font-size: 1.1rem; font-weight: 600; color: #fff; margin-bottom: 1.5rem; }
.footer-links li { margin-bottom: 0.8rem; }
.footer-links a, .footer-contact a { color: #a9a9a9; }
.footer-links a:hover, .footer-contact a:hover { color: #fff; }
.footer-contact li { margin-bottom: 0.8rem; line-height: 1.6; }
.footer-bottom {
 border-top: 1px solid rgba(255, 255, 255, 0.1);
 padding-top: 20px;
 display: flex;
 justify-content: space-between;
 align-items: center;
 font-size: 0.9rem;
}
.footer-legal-links { display: flex; gap: 20px; }
.footer-legal-links a { color: #a9a9a9; }
.footer-legal-links a:hover { color: #fff; }

/* --- ANIMATIONS & COOKIES --- */
.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);
}
#cookie-banner {
 position: fixed;
 bottom: 0;
 left: 0;
 right: 0;
 background-color: var(--text-dark);
 color: #fff;
 padding: 20px;
 display: none;
 justify-content: space-between;
 align-items: center;
 z-index: 2000;
 box-shadow: 0 -4px 10px rgba(0,0,0,0.2);
}
#cookie-banner p { margin: 0; }
#cookie-banner p a { color: var(--accent-color); text-decoration: underline; }
#cookie-banner div { display: flex; gap: 10px; }

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
 .media-object { grid-template-columns: 1fr; }
 .media-object.reverse .media-image, .media-object .media-image { order: 0; }
}
@media (max-width: 768px) {
 .nav-toggle { display: block; z-index: 1001; }
 .nav-menu {
 position: fixed;
 top: 0;
 right: -100%;
 width: 70%;
 height: 100vh;
 background-color: #fff;
 flex-direction: column;
 padding: 100px 20px 20px;
 box-shadow: -5px 0 15px rgba(0,0,0,0.1);
 transition: var(--transition);
 }
 .nav-menu.active { right: 0; }
 .nav-links { flex-direction: column; align-items: flex-start; gap: 25px; }
 .nav-link { width: 100%; }
 .nav-link.active::after, .nav-link:hover::after { width: 50px; }
 .timeline::after { left: 8px; margin-left: 0; }
 .timeline-item { width: 100%; padding-left: 40px; padding-right: 0; text-align: left !important; }
 .timeline-item:nth-child(odd), .timeline-item:nth-child(even) { left: 0; }
 .timeline-item:nth-child(odd) .timeline-dot, .timeline-item:nth-child(even) .timeline-dot { left: 0; }
 .contact-grid { grid-template-columns: 1fr; }
 .footer-bottom { flex-direction: column; gap: 15px; }
 #cookie-banner { flex-direction: column; gap: 15px; text-align: center; }
}