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

:root {
    --primary-dark: #0a1929;
    --primary-navy: #1e3a5f;
    --secondary-navy: #2d4a6f;
    --accent-blue: #3b82f6;
    --accent-blue-light: #60a5fa;
    --accent-blue-bright: #93bbfd;
    --dark-grey: #0a1929;
    --medium-grey: #64748b;
    --light-grey: #f1f5f9;
    --lighter-grey: #f8fafc;
    --white: #ffffff;
    --text-dark: #0a1929;
    --text-light: #64748b;
    --text-lighter: #94a3b8;
    --success: #10b981;
    --error: #ef4444;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(10, 25, 41, 0.08);
    --shadow-md: 0 4px 20px rgba(10, 25, 41, 0.12);
    --shadow-lg: 0 10px 40px rgba(10, 25, 41, 0.16);
    --shadow-xl: 0 20px 60px rgba(10, 25, 41, 0.2);
    --gradient-primary: linear-gradient(135deg, #0a1929 0%, #1e3a5f 100%);
    --gradient-blue: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(10, 25, 41, 0.9) 0%, rgba(30, 58, 95, 0.85) 100%);
    --glow-blue: 0 0 20px rgba(59, 130, 246, 0.4);
    --glow-blue-strong: 0 0 30px rgba(59, 130, 246, 0.6);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--lighter-grey);
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; font-weight: 800; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.header {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.header .container {
    padding-left: clamp(6px, 1vw, 12px);
    padding-right: clamp(6px, 1vw, 12px);
}

.nav {
    padding: 1.25rem 0;
}

.nav-content {
    display: flex;
    align-items: center;
    gap: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.logo {
    display: flex;
    align-items: flex-end;
    gap: clamp(0.35rem, 0.8vw, 0.75rem);
    flex: 0 0 auto;
    transition: var(--transition);
    text-decoration: none;
    cursor: pointer;
}

.logo img {
    height: clamp(95px, 8vw, 110px);
    width: auto;
    transition: var(--transition);
    display: block;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: clamp(95px, 8vw, 110px);
}

.logo-name {
    font-size: 4.5rem;
    font-weight: 700;
    color: #3667b5;
    line-height: 0.85;
    font-family: 'Space Grotesk', sans-serif;
    padding-top: 1.2rem;
}

.logo-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: #64748b;
    line-height: 1;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .nav-content {
        justify-content: space-between;
    }
    
    .logo {
        gap: 0.4rem;
        flex: 0 0 auto;
        max-width: none;
    }
    
    .logo img {
        height: 70px;
    }
    
    .logo-text {
        height: 70px;
    }
    
    .logo-name {
        font-size: 3rem;
        padding-top: 0.5rem;
    }
    
    .logo-subtitle {
        font-size: 0.7rem;
    }
}

@media (max-width: 420px) {
    .logo {
        gap: 0.4rem;
        flex-shrink: 1;
        max-width: 70%;
    }
    
    .logo img {
        height: 60px;
        flex-shrink: 0;
    }
    
    .logo-text {
        height: 60px;
    }
    
    .logo-name {
        font-size: 2.5rem;
        padding-top: 0.35rem;
    }
    
    .logo-subtitle {
        font-size: 0.65rem;
    }
}

.logo:hover {
    transform: scale(1.02);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: clamp(0.9rem, 1.6vw, 1.3rem);
    flex: 1 1 auto;
    justify-content: flex-end;
}

@media (max-width: 1100px) {
    .nav-menu {
        gap: 0.75rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none !important;
    }
}

.nav-link {
    color: #1e293b;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.nav-link:hover {
    color: #1d4ed8;
}

.nav-link:first-child {
    color: #1d4ed8;
}

.dropdown > .nav-link::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.25rem;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    transition: transform 0.3s ease;
    opacity: 0.7;
}

.dropdown:hover > .nav-link::after {
    transform: rotate(180deg);
    opacity: 1;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 260px;
    white-space: nowrap;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    padding: 0.5rem 0;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0.75rem;
}

.dropdown:hover > .nav-link,
.dropdown:focus-within > .nav-link {
    color: #1d4ed8;
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #1e293b;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.dropdown-item:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(147, 197, 253, 0.1) 100%);
    color: #1d4ed8;
    padding-left: 2rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2.5px;
    background-color: #1e293b;
    display: block;
    border-radius: 2px;
    transition: var(--transition);
}

@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none !important;
    }
}

.hero {
    background-image: url('assets/website-header-off.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 160px 0 160px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-overlay);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--lighter-grey), transparent);
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    text-align: left;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease;
    letter-spacing: -0.02em;
    line-height: 1.1;
    background: linear-gradient(120deg, #e2e8f0 0%, #60a5fa 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-blue) 0%, var(--accent-blue-light) 50%, transparent 100%);
    border-radius: 2px;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease 0.2s backwards;
    color: var(--accent-blue-light);
    letter-spacing: 0.02em;
}

.hero-cta-btn {
    display: inline-block;
    background: var(--accent-blue);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    animation: fadeInUp 0.8s ease 0.4s backwards;
    cursor: pointer;
}

.hero-cta-btn:hover {
    background: #2563eb;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
}

.hero-cta-btn:active {
    transform: translateY(-1px);
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: fadeInRight 0.8s ease 0.4s backwards;
}

.stat-card {
    background: rgba(15, 30, 50, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(96, 165, 250, 0.4);
    border-radius: 16px;
    padding: 1.75rem 2rem;
    transition: var(--transition);
}

.stat-card:hover {
    background: rgba(15, 30, 50, 0.7);
    border-color: rgba(96, 165, 250, 0.6);
    transform: translateX(-5px);
    box-shadow: 0 8px 24px rgba(96, 165, 250, 0.2);
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #60a5fa 0%, #93bbfd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #e2e8f0;
    font-weight: 500;
    letter-spacing: 0.02em;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: var(--transition);
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: var(--gradient-blue);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--accent-blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.about {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-blue) 0%, var(--accent-blue-light) 30%, transparent 60%);
}

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

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    position: relative;
    letter-spacing: -0.01em;
    line-height: 1.3;
    padding-top: 0.25rem;
}

.title-underline {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-blue) 30%, var(--accent-blue-light) 50%, var(--accent-blue) 70%, transparent 100%);
    margin: 0 auto 1.5rem;
    border-radius: 3px;
}

.section-description {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.ll97-compliance {
    padding: 100px 0;
    padding-top: 160px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

.ll97-compliance::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-blue) 0%, var(--accent-blue-light) 30%, transparent 60%);
}

.ll97-alert {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-left: 5px solid #ef4444;
    border-radius: 12px;
    padding: 2rem;
    margin: 3rem 0;
    display: flex;
    gap: 1.5rem;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.1);
}

.alert-icon {
    flex-shrink: 0;
}

.alert-icon svg {
    width: 48px;
    height: 48px;
    color: #ef4444;
}

.alert-content h3 {
    color: #991b1b;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.alert-content p {
    color: #7f1d1d;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.alert-content p:last-child {
    margin-bottom: 0;
}

.ll97-intro {
    text-align: center;
    max-width: 800px;
    margin: 3rem auto 2rem;
}

.ll97-intro h3 {
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.ll97-intro p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.7;
}

.ll97-services-list {
    max-width: 900px;
    margin: 3rem auto;
}

.ll97-service-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.75rem 0;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    transition: var(--transition);
}

.ll97-service-item:last-child {
    border-bottom: none;
}

.ll97-service-item:hover {
    padding-left: 1rem;
}

.ll97-check-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.ll97-check-icon svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.ll97-service-content {
    flex: 1;
}

.ll97-service-content h4 {
    font-size: 1.35rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.ll97-service-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.ll97-cta {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-navy) 100%);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    margin-top: 3rem;
    box-shadow: 0 10px 40px rgba(10, 25, 41, 0.2);
}

.ll97-cta h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.ll97-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.ll97-cta .btn {
    margin: 0 auto;
    min-width: 250px;
}

.collaborations {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.collaborations::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-blue) 0%, var(--accent-blue-light) 30%, transparent 60%);
}

.collaborations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.collaboration-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid rgba(59, 130, 246, 0.15);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.collaboration-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-blue) 0%, var(--accent-blue-light) 50%, transparent 100%);
}

.collaboration-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-blue);
}

.collaboration-logo {
    width: 100%;
    max-width: 250px;
    margin: 0 auto 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, var(--lighter-grey) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.collaboration-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.collaboration-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.collaboration-name a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.collaboration-name a:hover {
    color: var(--accent-blue);
}

.collaboration-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.services {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--lighter-grey) 0%, var(--white) 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-blue) 0%, var(--accent-blue-light) 30%, transparent 60%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-blue) 0%, var(--accent-blue-light) 50%, transparent 100%);
    transform: scaleX(0.3);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(59, 130, 246, 0.1);
}

.service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem;
    background: var(--gradient-blue);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3), var(--glow-blue);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.5), var(--glow-blue-strong);
}

.service-icon svg {
    width: 45px;
    height: 45px;
    color: var(--white);
}

.service-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
}

.service-list {
    text-align: left;
    padding-left: 0;
}

.service-item {
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.projects {
    padding: 100px 0;
    background-color: var(--lighter-grey);
    position: relative;
}

.projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-blue) 0%, var(--accent-blue-light) 30%, transparent 60%);
}

.project-item {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 2px solid var(--light-grey);
}

.project-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.project-main-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.project-main-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 70%;
    background: linear-gradient(180deg, var(--accent-blue) 0%, var(--accent-blue-light) 50%, transparent 100%);
    border-radius: 3px;
}

.project-main-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 900px;
}

.project-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.project-image-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.project-image-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.project-image-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.image-caption {
    padding: 1rem;
    background-color: var(--light-grey);
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
}

.reviews {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--lighter-grey) 100%);
    position: relative;
}

.reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-blue) 0%, var(--accent-blue-light) 30%, transparent 60%);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background-color: var(--white);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-blue) 0%, var(--accent-blue-light) 40%, transparent 80%);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-blue);
}

.review-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.review-stars .star {
    color: var(--accent-blue);
    font-size: 1.25rem;
}

.review-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--dark-grey);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-author {
    border-top: 1px solid #e5e7eb;
    padding-top: 1rem;
}

.author-name {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.review-source {
    font-size: 0.875rem;
    color: var(--medium-grey);
}

.google-badge {
    text-align: center;
    margin-top: 3rem;
}

.google-badge p {
    font-size: 1rem;
    color: var(--dark-grey);
}

.google-badge a {
    color: var(--accent-blue);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.google-badge a:hover {
    color: var(--accent-blue-light);
    text-decoration: underline;
}

.contact {
    padding: 100px 0;
    background: var(--lighter-grey);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-blue) 0%, var(--accent-blue-light) 30%, transparent 60%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--white) 0%, rgba(59, 130, 246, 0.03) 100%);
    border-radius: 12px;
    transition: var(--transition);
    border: 1px solid rgba(59, 130, 246, 0.15);
}

.contact-info-item:hover {
    background: var(--gradient-blue);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.contact-info-item:hover .contact-icon svg {
    color: var(--white);
}

.contact-info-item:hover h3,
.contact-info-item:hover p,
.contact-info-item:hover a {
    color: var(--white);
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 30px;
    height: 30px;
    color: var(--accent-blue);
    transition: var(--transition);
}

.contact-details h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-details p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-details a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--accent-blue);
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--light-grey);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    background-color: var(--lighter-grey);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.form-group input.error,
.form-group textarea.error {
    border-color: var(--error);
    background-color: rgba(239, 68, 68, 0.05);
}

.error-message {
    display: block;
    color: var(--error);
    font-size: 0.875rem;
    margin-top: 0.5rem;
    min-height: 20px;
}

.form-success {
    display: none;
    background-color: var(--success);
    color: var(--white);
    padding: 1rem;
    border-radius: 5px;
    margin-top: 1rem;
    text-align: center;
}

.form-success.show {
    display: block;
}

.footer {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 4rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-blue);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.footer-logo img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-nav {
    width: 100%;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
    background: transparent;
}

.footer-link-with-submenu {
    display: inline-block;
    position: relative;
}

.footer-sublink {
    color: var(--white);
    text-decoration: none;
    font-size: 0.7rem;
    transition: var(--transition);
    opacity: 0.6;
    max-width: 120px;
    line-height: 1.3;
    display: block;
    margin-top: 0.25rem;
}

.footer-sublink:hover {
    opacity: 1;
    color: var(--accent-blue-light);
}

.footer-link {
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
    opacity: 0.8;
}

.footer-link:hover {
    opacity: 1;
    color: var(--accent-blue-light);
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1.5rem;
}

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

.social-link:hover {
    background: var(--gradient-blue);
    transform: translateY(-3px) scale(1.1);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-text {
    margin-top: 1.5rem;
    text-align: center;
}

.footer-text p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.8;
    margin: 0 0 0.75rem 0;
}

.footer-credit {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--text-lighter);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-credit:hover {
    color: var(--accent-blue);
}

@media (max-width: 768px) {
    .nav-menu {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: var(--shadow-lg);
        gap: 0;
        border-top: 3px solid var(--accent-blue);
        z-index: 1000;
    }

    .nav-menu.active {
        display: flex !important;
    }

    .nav-menu li {
        padding: 1.25rem 0;
        border-bottom: 1px solid rgba(59, 130, 246, 0.15);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-link {
        font-size: 1.1rem;
        display: block;
        padding: 0.5rem 1rem;
        color: #1e293b;
    }

    .nav-link:hover {
        color: #1d4ed8;
    }

    .nav-link:first-child {
        color: #1d4ed8;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        margin-top: 0.5rem;
        padding: 0;
        background: transparent;
        transform: none;
    }

    .dropdown-item {
        padding: 0.75rem 2rem;
        font-size: 0.95rem;
        color: #1e293b;
    }

    .dropdown-item:hover {
        background: rgba(59, 130, 246, 0.1);
        padding-left: 2.5rem;
    }

    .mobile-menu-toggle {
        display: flex !important;
        position: relative;
        z-index: 1001;
        margin-left: auto;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
        background-color: var(--accent-blue);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
        background-color: var(--accent-blue);
    }

    .hero {
        padding: 120px 0 80px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

    .hero-title {
        font-size: 2.75rem;
    }

    .hero-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-cta-btn {
        font-size: 1rem;
        padding: 0.875rem 2rem;
    }

    .hero-stats {
        gap: 1.25rem;
    }

    .stat-card {
        padding: 1.5rem 1.75rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        order: -1;
    }

    .ll97-alert {
        flex-direction: column;
        padding: 1.5rem;
    }

    .alert-icon svg {
        width: 32px;
        height: 32px;
    }

    .alert-content h3 {
        font-size: 1.25rem;
    }

    .alert-content p {
        font-size: 0.95rem;
    }

    .ll97-service-item {
        gap: 1rem;
        padding: 1.5rem 0;
    }

    .ll97-check-icon {
        width: 40px;
        height: 40px;
    }

    .ll97-check-icon svg {
        width: 24px;
        height: 24px;
    }

    .ll97-service-content h4 {
        font-size: 1.15rem;
    }

    .ll97-service-content p {
        font-size: 0.95rem;
    }

    .ll97-cta {
        padding: 2rem 1.5rem;
    }

    .ll97-cta h3 {
        font-size: 1.5rem;
    }

    .ll97-cta p {
        font-size: 1rem;
    }

    .collaborations-grid {
        grid-template-columns: 1fr;
    }

    .project-images-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-cta-btn {
        font-size: 0.95rem;
        padding: 0.75rem 1.75rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 2.5rem 2rem;
    }

    .project-main-title {
        font-size: 1.5rem;
    }

    .project-main-description {
        font-size: 1rem;
    }

    .btn {
        padding: 14px 32px;
        font-size: 0.95rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .footer-link-with-submenu {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-sublink {
        text-align: center;
    }
}

/* Portfolio Carousel Styles */
.project-carousel {
    margin-top: 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.project-carousel .swiper-slide {
    background-color: var(--white);
    position: relative;
}

.carousel-image {
    width: 100%;
    height: auto;
    min-height: 400px;
    max-height: 600px;
    object-fit: contain;
    display: block;
    cursor: pointer;
    transition: var(--transition);
    background-color: var(--light-grey);
}

.carousel-image:hover {
    opacity: 0.9;
}

.carousel-caption {
    padding: 1.5rem;
    background-color: var(--light-grey);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    text-align: center;
    margin: 0;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Swiper Navigation Buttons */
.project-carousel .swiper-button-next,
.project-carousel .swiper-button-prev {
    color: var(--white);
    background: var(--gradient-blue);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.5), var(--glow-blue);
    opacity: 1;
}

.project-carousel .swiper-button-next:after,
.project-carousel .swiper-button-prev:after {
    font-size: 22px;
    font-weight: bold;
}

.project-carousel .swiper-button-next:hover,
.project-carousel .swiper-button-prev:hover {
    background: var(--accent-blue-light);
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

/* Swiper Pagination */
.project-carousel .swiper-pagination {
    bottom: 80px;
}

.project-carousel .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--white);
    opacity: 0.7;
    transition: var(--transition);
}

.project-carousel .swiper-pagination-bullet-active {
    background: var(--gradient-blue);
    opacity: 1;
    transform: scale(1.3);
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-close {
    position: absolute;
    top: -60px;
    right: 0;
    font-size: 45px;
    font-weight: 300;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    z-index: 10001;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.8);
    border-radius: 50%;
}

.lightbox-close:hover {
    background: var(--accent-blue);
    transform: rotate(90deg) scale(1.1);
}

#lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

#lightbox-caption {
    color: var(--white);
    text-align: center;
    padding: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin-top: 1rem;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(59, 130, 246, 0.8);
    color: var(--white);
    border: none;
    font-size: 30px;
    padding: 1rem 1.5rem;
    cursor: pointer;
    border-radius: 10px;
    transition: var(--transition);
    z-index: 10001;
}

.lightbox-nav:hover {
    background: var(--accent-blue);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Responsive Carousel Styles */
@media (max-width: 768px) {
    .carousel-image {
        min-height: 300px;
        max-height: 400px;
    }

    .project-carousel .swiper-button-next,
    .project-carousel .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .project-carousel .swiper-button-next:after,
    .project-carousel .swiper-button-prev:after {
        font-size: 16px;
    }

    .project-carousel .swiper-pagination {
        bottom: 70px;
    }

    .lightbox-nav {
        padding: 0.75rem 1rem;
        font-size: 24px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    #lightbox-caption {
        font-size: 1rem;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .carousel-image {
        min-height: 250px;
        max-height: 350px;
    }

    .carousel-caption {
        font-size: 0.9rem;
        padding: 1rem;
    }

    .project-carousel .swiper-button-next,
    .project-carousel .swiper-button-prev {
        width: 35px;
        height: 35px;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
        font-size: 35px;
    }
}

.emergency-response {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--lighter-grey) 0%, var(--white) 100%);
    margin-top: 80px;
}

.emergency-alert {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-left: 5px solid #dc2626;
    border-radius: 12px;
    padding: 2rem;
    margin: 3rem 0;
    display: flex;
    gap: 1.5rem;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.15);
}

.emergency-alert .alert-icon svg {
    width: 48px;
    height: 48px;
    color: #dc2626;
}

.emergency-alert .alert-content h3 {
    color: #991b1b;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.emergency-alert .alert-content p {
    color: #7f1d1d;
    font-size: 1.05rem;
    line-height: 1.7;
}

.emergency-intro {
    text-align: center;
    max-width: 800px;
    margin: 3rem auto 2rem;
}

.emergency-intro h3 {
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.emergency-intro p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.7;
}

.emergency-services-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

.emergency-service-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.emergency-service-item:last-child {
    border-bottom: none;
}

.emergency-check-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.emergency-check-icon svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.emergency-service-content h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.emergency-service-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
}

.visual-evidence-section {
    margin: 4rem 0;
    padding: 3rem;
    background: var(--lighter-grey);
    border-radius: 16px;
}

.visual-evidence-section h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.emergency-carousel {
    max-width: 900px;
    margin: 0 auto;
}

.emergency-carousel .carousel-image {
    width: 100%;
    height: auto;
    min-height: 400px;
    max-height: 600px;
    object-fit: cover;
    border-radius: 12px;
}

.emergency-carousel .carousel-caption {
    text-align: center;
    font-size: 1rem;
    color: var(--text-light);
    margin-top: 1.5rem;
    padding: 0 2rem;
}

.emergency-cta {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-navy) 100%);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    margin-top: 3rem;
    box-shadow: 0 10px 40px rgba(10, 25, 41, 0.2);
}

.emergency-cta h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.emergency-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .emergency-alert {
        flex-direction: column;
        padding: 1.5rem;
    }

    .emergency-alert .alert-icon svg {
        width: 32px;
        height: 32px;
    }

    .emergency-alert .alert-content h3 {
        font-size: 1.25rem;
    }

    .emergency-alert .alert-content p {
        font-size: 0.95rem;
    }

    .emergency-service-item {
        gap: 1rem;
        padding: 1.5rem 0;
    }

    .emergency-check-icon {
        width: 40px;
        height: 40px;
    }

    .emergency-check-icon svg {
        width: 24px;
        height: 24px;
    }

    .emergency-service-content h4 {
        font-size: 1.2rem;
    }

    .emergency-service-content p {
        font-size: 0.95rem;
    }

    .emergency-cta {
        padding: 2rem 1.5rem;
    }

    .emergency-cta h3 {
        font-size: 1.5rem;
    }

    .emergency-cta p {
        font-size: 1rem;
    }

    .visual-evidence-section {
        padding: 2rem 1.5rem;
    }

    .emergency-carousel .carousel-image {
        min-height: 300px;
        max-height: 400px;
    }
}
