:root {
 --primary-color: #047857;
 --primary-color-rgb: 4, 120, 87;
 --secondary-color: #065f46;
 --accent-color: #10b981;
 --heading-color: #1a202c;
 --text-color: #4a5568;
 --text-muted: #718096;
 --bg-color: #f7fafc;
 --bg-light: #ecfdf5;
 --white: #ffffff;
 --light-gray: #ecfdf5;
 --border-color: #6ee7b7;
 --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
 --shadow-md: 0 3px 10px rgba(0,0,0,0.08);
 --shadow-lg: 0 8px 30px 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: #047857;
 --primary-dark: #065f46;
 --accent-color: #10b981;
 --accent-dark: #059669;
 --bg-dark: #011627;
 --bg-footer: #012a20;
 --bg-light: #f0fdf4;
 --text-dark: #1f2937;
 --text-light: #d1d5db;
 --text-muted: #6b7280;
 --border-color: #e5e7eb;
 --header-font: 'Playfair Display', serif;
 --body-font: 'Inter', sans-serif;
 --radius: 8px;
 --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
 --transition: all 0.3s ease-in-out;
}

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

html {
 scroll-behavior: smooth;
}

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

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

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

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

a:hover {
 color: var(--accent-dark);
}

.section {
 padding: 80px 0;
}

.section-inner { display: flex; flex-direction: column; }
.section-header { text-align: center; margin-bottom: 48px; max-width: 700px; margin-left: auto; margin-right: auto; }
.section-label { display: inline-block; background-color: var(--accent-color); color: #fff; padding: 4px 12px; border-radius: 99px; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; margin-bottom: 16px; letter-spacing: 0.5px; }
.section-title { font-family: var(--header-font); font-size: clamp(2.2rem, 5vw, 3rem); line-height: 1.2; margin-bottom: 16px; color: var(--text-dark); }
.section-subtitle { font-size: 1.1rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; }
.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--bg-dark); }
.bg-dark .section-title, .bg-dark .section-subtitle, .bg-dark .project-info, .bg-dark .card-text { color: var(--text-light); }
.bg-dark h3, .bg-dark h2 { color: #fff; }

.centered { text-align: center; }

/* Buttons */
.btn {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 gap: 8px;
 font-family: var(--body-font);
 font-weight: 600;
 padding: 12px 24px;
 border-radius: var(--radius);
 border: 2px solid transparent;
 cursor: pointer;
 transition: var(--transition);
 text-align: center;
 font-size: 1rem;
}

.btn-primary { background-color: var(--accent-color); color: white; border-color: var(--accent-color); }
.btn-primary:hover { background-color: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-2px); }
.btn-secondary { background-color: transparent; color: var(--primary-color); border-color: var(--primary-color); }
.bg-dark .btn-secondary { color: #fff; border-color: rgba(255,255,255,0.5); }
.btn-secondary:hover { background-color: var(--primary-color); color: white; border-color: var(--primary-color); }
.bg-dark .btn-secondary:hover { background-color: #fff; color: var(--bg-dark); }
.btn-icon { gap: 10px; }

/* Header */
.header {
 width: 100%;
 position: fixed;
 top: 0;
 left: 0;
 z-index: 1000;
 background-color: rgba(1, 22, 39, 0.8);
 backdrop-filter: blur(10px);
 transition: var(--transition);
}
.header.scrolled { background-color: rgba(1, 22, 39, 0.95); box-shadow: var(--shadow); }
.nav { display: flex; justify-content: space-between; align-items: center; height: 80px; }
.nav-logo { font-family: var(--header-font); font-size: 1.5rem; font-weight: 700; color: #fff; }
.nav-links { display: flex; list-style: none; gap: 32px; }
.nav-links a { color: #fff; font-weight: 500; position: relative; padding: 8px 0; }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background-color: var(--accent-color); transition: var(--transition); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { display: block; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; }
.nav-toggle span { display: block; width: 25px; height: 2px; background-color: #fff; margin: 5px 0; transition: var(--transition); }

/* Hero */
.hero { display: flex; align-items: center; justify-content: center; min-height: 80vh; background-size: cover; background-position: center; position: relative; color: #fff; text-align: center; padding: 100px 20px; }
.hero::before { content: ''; position: absolute; inset: 0; background-color: rgba(0,0,0,0.6); }
.hero-content { position: relative; z-index: 2; max-width: 800px; }
.hero-title { font-family: var(--header-font); font-size: clamp(3rem, 7vw, 5rem); line-height: 1.1; margin-bottom: 24px; }
.hero-subtitle { font-size: 1.25rem; line-height: 1.6; max-width: 600px; margin: 0 auto 32px; opacity: 0.9; }

/* Projects Grid */
.projects-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.project-card { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 4/3; }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.project-card:hover img { transform: scale(1.05); }
.project-card .project-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); color: #fff; }
.project-card h3 { font-family: var(--header-font); font-size: 1.5rem; margin-bottom: 4px; }
.project-card span { font-size: 0.9rem; opacity: 0.8; }

/* Media Object */
.media-object { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.media-object.reverse { grid-template-columns: 1fr 1fr; }
.media-object.reverse .media-visual { order: 2; }
.media-object .media-visual img { border-radius: var(--radius); box-shadow: var(--shadow); }
.media-copy h2 { margin-bottom: 20px; }
.media-copy p { margin-bottom: 20px; color: var(--text-muted)}
.media-copy ul { list-style: none; padding-left: 0; margin-bottom: 30px; }
.media-copy ul li { position: relative; padding-left: 25px; margin-bottom: 12px; }
.media-copy ul li::before { content: ''; position: absolute; left: 0; color: var(--primary-color); font-weight: bold; }

/* Cards */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.card { background-color: #fff; border-radius: var(--radius); box-shadow: var(--shadow); transition: var(--transition); border: 1px solid var(--border-color); }
.card:hover { transform: translateY(-5px); box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1); }
.card-body { padding: 30px; }
.card.text-center { text-align: center; }
.card-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 15px; color: var(--text-dark); }
.card-text { color: var(--text-muted); }
.card-image { width: 100%; height: 200px; object-fit: cover; border-radius: var(--radius) var(--radius) 0 0; }

/* Team Section */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.team-member { text-align: center; }
.team-photo { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; margin: 0 auto 20px; border: 4px solid var(--bg-light); }
.team-name { font-size: 1.2rem; font-weight: 700; }
.team-role { color: var(--primary-color); font-weight: 500; margin-bottom: 8px; }
.team-bio { font-size: 0.9rem; color: var(--text-muted); }

/* Partners */
.partners-grid { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 40px; }
.partner-logo { filter: grayscale(1) brightness(1.5); opacity: 0.7; transition: var(--transition); }
.partner-logo:hover { filter: none; opacity: 1; }
.partner-logo span {-webkit-text-stroke: 1px white; color: transparent; font-size: 1.5rem; font-weight: 700; }

/* Forms */
.form-container { max-width: 700px; margin: 0 auto; background: #fff; padding: 40px; border-radius: var(--radius); box-shadow: var(--shadow); }
.contact-form .form-group { margin-bottom: 20px; }
.contact-form .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-form label { display: block; font-weight: 600; margin-bottom: 8px; }
.contact-form input, .contact-form textarea { width: 100%; padding: 12px; border: 1px solid var(--border-color); border-radius: var(--radius); font-family: var(--body-font); font-size: 1rem; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--primary-color); box-shadow: 0 0 0 3px rgba(4, 120, 87, 0.2); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form button { width: 100%; }

/* Footer */
.footer { background-color: var(--bg-footer); color: var(--text-light); padding: 80px 0 30px; margin-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr 1.5fr; gap: 40px; margin-bottom: 40px; }
.footer-col .footer-logo { font-family: var(--header-font); font-size: 1.8rem; color: #fff; margin-bottom: 16px; display: block; }
.footer-description { line-height: 1.6; color: #a0aec0; margin-bottom: 24px; }
.footer-social { display: flex; gap: 16px; }
.footer-social a { color: #fff; font-size: 1.2rem; transition: var(--transition); }
.footer-social a:hover { color: var(--accent-color); transform: translateY(-2px); }
.footer-heading { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px;}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a, .footer-contact-item, .footer-contact-item a { color: #a0aec0; font-size: 0.95rem; }
.footer-links a:hover, .footer-contact-item a:hover { color: #fff; }
.footer-contact-item { margin-bottom: 12px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; display: flex; justify-content: space-between; align-items: center; font-size: 0.9rem; color: #a0aec0;}
.footer-legal-links { display: flex; gap: 24px; }
.footer-legal-links a { color: #a0aec0; }
.footer-legal-links a:hover { color: #fff; }

/* Specific Pages */
.page-header-section { padding: 120px 0 60px; text-align: center; color: #fff; }
.page-header-section h1 { font-family: var(--header-font); font-size: 3.5rem; }
.page-header-section p { font-size: 1.2rem; max-width: 600px; margin: 1rem auto 0; opacity: 0.9; }

.service-cards-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }

.timeline { position: relative; max-width: 800px; margin: 40px auto 0; }
.timeline::before { content: ''; position: absolute; width: 2px; background-color: var(--border-color); left: 20px; top: 0; bottom: 0; }
.timeline-step { position: relative; padding-left: 60px; margin-bottom: 40px; }
.timeline-number { position: absolute; left: 0; top: 0; width: 40px; height: 40px; border-radius: 50%; background-color: var(--primary-color); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.2rem; }
.timeline-content h3 { font-size: 1.4rem; margin-bottom: 10px; }

.cta-section { padding: 80px 0; }

.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; }
.contact-details { margin-top: 30px; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-item svg { color: var(--primary-color); width: 24px; height: 24px; flex-shrink: 0; margin-top: 4px; }
.contact-item strong { display: block; font-weight: 700; margin-bottom: 4px; }
.contact-item p { margin: 0; color: var(--text-muted); }
.map-section { margin-top: 80px; }

.thank-you-section { min-height: 50vh; display: flex; align-items: center; justify-content: center; background-color: var(--bg-light); text-align: center; }

.legal-content h2 { font-family: var(--header-font); margin-top: 2rem; margin-bottom: 1rem; }
.legal-content h3 { font-family: var(--header-font); margin-top: 1.5rem; margin-bottom: 0.5rem; }
.legal-content p, .legal-content li { margin-bottom: 1rem; line-height: 1.8; color: var(--text-muted);}
.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: 700;}

/* Cookie Banner */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background-color: var(--bg-dark); color: #fff; padding: 1.5rem; display: none; align-items: center; justify-content: space-between; gap: 1rem; z-index: 1001; }
.cookie-banner p { margin: 0; }
.cookie-banner a { color: var(--accent-color); text-decoration: underline; }
.cookie-buttons { display: flex; gap: 1rem; }
.cookie-buttons .btn-primary { background: var(--accent-color); }
.cookie-buttons .btn-secondary { background: transparent; border: 1px solid rgba(255,255,255,0.5); color: #fff;}
.cookie-buttons .btn-secondary:hover { background: #fff; color: var(--bg-dark); }

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

@media (max-width: 768px) {
 .section { padding: 60px 0; }
 .nav-toggle { display: block; z-index: 1001; }
 .nav-links {
 position: fixed;
 top: 0; right: 0; bottom: 0;
 width: 100%;
 background-color: var(--bg-dark);
 flex-direction: column;
 justify-content: center;
 align-items: center;
 gap: 2rem;
 transform: translateX(100%);
 transition: transform 0.4s ease-in-out;
 }
 .nav-links.active { transform: translateX(0); }
 .nav-cta { display: none; }
 .footer-grid { grid-template-columns: 1fr; }
 .footer-bottom { flex-direction: column; gap: 1rem; }
 .cookie-banner { flex-direction: column; text-align: center; }
}

@media (max-width: 576px) {
 .grid-3, .projects-grid, .service-cards-grid, .team-grid { grid-template-columns: 1fr; }
 .contact-form .grid-2 { grid-template-columns: 1fr; }
 .page-header-section h1 { font-size: 2.5rem; }
}