/* ============================================
   PROFESSIONAL REDESIGN - AI & GenAI Solutions
   Modern, Clean, Enterprise-Grade Design
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
    /* Professional Color Palette */
    --primary: #0066FF;
    --primary-dark: #0052CC;
    --primary-light: #3385FF;
    --secondary: #00D4AA;
    --accent: #7C3AED;
    --dark: #0F172A;
    --dark-secondary: #1E293B;
    --text-primary: #0F172A;
    --text-secondary: #64748B;
    --text-light: #94A3B8;
    --bg-white: #FFFFFF;
    --bg-light: #F8FAFC;
    --bg-gray: #F1F5F9;
    --border: #E2E8F0;
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

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

/* ============================================
   NAVIGATION - PROFESSIONAL REDESIGN
   ============================================ */

nav.navbar {
    background: rgba(15, 23, 42, 0.98) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-base);
}

nav.navbar.scrolled {
    padding: 0.75rem 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.navbar-brand img {
    height: 45px;
    width: auto;
    transition: var(--transition-base);
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0.25rem;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: var(--secondary);
    transition: transform var(--transition-base);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.05);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

.navbar-nav .dropdown-toggle::after {
    transition: transform 0.3s ease;
    margin-left: 0.5em;
}

.dropend.show .dropdown-toggle::after,
.dropend:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 0.75rem;
    margin-top: 0.75rem;
    min-width: 350px;
    display: block !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dropend.show .dropdown-menu,
.dropend:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: block !important;
}

.dropdown-item {
    padding: 0.875rem 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 0.25rem;
    transition: all var(--transition-base);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
}

.dropdown-item:last-child {
    margin-bottom: 0;
}

.dropdown-item img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    flex-shrink: 0;
}

.dropdown-item span {
    display: block;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

.dropdown-item:hover span {
    color: rgba(255, 255, 255, 0.9);
}

/* CTA Button */
.btn.btn-default.contact-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 15px;
    border: none;
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.3);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn.btn-default.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn.btn-default.contact-btn:hover::before {
    left: 100%;
}

.btn.btn-default.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 102, 255, 0.4);
}

/* ============================================
   HERO SECTION - MODERN REDESIGN
   ============================================ */

.banner {
    background: var(--bg-light);
    margin-top: 80px;
}

.hero-section {
    position: relative;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #334155 100%);
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
    padding: 60px 0 40px;
    min-height: auto;
    max-height: none;
    display: flex;
    align-items: center;
    overflow: visible;
}

.hero-section .col-md-6 {
    position: relative;
    z-index: 2;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 102, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 212, 170, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    color: #fff;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    margin-top: 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-section h1 span {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-top: 0.5rem;
}

.hero-section .content {
    padding-top: 0;
}

.hero-section .pic-right {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.hero-section .pic-right {
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-section .pic-right img {
    width: 100% !important;
    max-width: 500px;
    height: auto !important;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
    animation: float 6s ease-in-out infinite;
    object-fit: contain;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Hero CTA Buttons */
.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    flex-wrap: wrap;
}

.btn-primary-large {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1.125rem;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.4);
    transition: all var(--transition-base);
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.5);
}

.btn-secondary-large {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1.125rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all var(--transition-base);
}

.btn-secondary-large:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* ============================================
   ABOUT SECTION - PROFESSIONAL REDESIGN
   ============================================ */

.aboutus {
    background: var(--bg-white);
    padding: var(--spacing-2xl) 0;
    position: relative;
}

.aboutus h3 {
    color: var(--primary);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.aboutus h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--spacing-lg);
}

.aboutus h2 span {
    color: var(--primary);
    position: relative;
}

.aboutus h4 {
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.aboutus p {
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
}

.aboutus img {
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    transition: var(--transition-slow);
}

.aboutus img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-2xl);
}

/* ============================================
   SERVICES SECTION - MODERN CARD DESIGN
   ============================================ */

.services {
    background: var(--bg-light);
    padding: var(--spacing-2xl) 0 var(--spacing-sm) 0;
    position: relative;
    margin-top: 0;
}

.services h3 {
    color: var(--primary);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    text-align: center;
}

.services h2 {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.services > .container > .row:first-child p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-2xl);
    font-size: 1.125rem;
}

/* Service Cards - Modern Design */
.row.services-one {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-lg);
}

.row.services-one:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.row.services-one h3 {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 0;
    min-width: 60px;
}

.row.services-one h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.row.services-one p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    font-weight: 500;
}

.row.services-one ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.row.services-one ul li {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--text-secondary);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    transition: var(--transition-base);
}

.row.services-one ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 700;
    font-size: 1rem;
}

.row.services-one ul li:hover {
    color: var(--text-primary);
    padding-left: 1.75rem;
}

.row.services-one .col-md-2 img {
    width: 100%;
    max-width: 120px;
    height: auto;
    opacity: 0.9;
}

.row.services-one .col-md-2:last-child {
    display: flex;
    align-items: center;
    justify-content: center;
}

.row.services-one i.fa-solid.fa-arrow-right {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: 1rem;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.3);
    transition: all var(--transition-base);
    cursor: pointer;
}

.row.services-one i.fa-solid.fa-arrow-right:hover {
    transform: translateX(5px) scale(1.1);
    box-shadow: 0 12px 30px rgba(0, 102, 255, 0.4);
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */

.faq {
    padding: var(--spacing-sm) 0 var(--spacing-2xl) 0;
    background: var(--bg-white);
}

.faq h3 {
    text-align: center;
}

.faq h2 {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.background-color {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
}

.background-color:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--primary-light);
}

.why-us-points-img {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-us-points-img img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 102, 255, 0.2));
}

.why-us-points-text h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.why-us-points-text p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

.number-style {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    min-width: 80px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   CONTACT SECTION - PROFESSIONAL REDESIGN
   ============================================ */

.project-in-mind {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-light);
    position: relative;
}

.project-in-mind .container {
    background: var(--bg-white);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-2xl);
    box-shadow: var(--shadow-xl);
}

.project-in-mind h3 {
    color: var(--primary);
}

.project-in-mind h2 {
    margin-bottom: var(--spacing-lg);
}

.project-in-mind p {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
}

.project-in-mind ul {
    list-style: none;
    padding: 0;
    margin: var(--spacing-lg) 0;
}

.project-in-mind ul li {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    font-size: 1rem;
    color: var(--text-secondary);
}

.project-in-mind ul li img {
    width: 24px;
    height: 24px;
    opacity: 0.8;
}

.contact-form {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-secondary) 100%);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
    color: #fff;
}

.contact-form h3 {
    color: #fff;
    font-size: 1.75rem;
    margin-bottom: var(--spacing-lg);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: var(--spacing-md);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1rem;
    transition: all var(--transition-base);
    font-family: 'Inter', sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form button {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.3);
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 102, 255, 0.4);
}

/* ============================================
   FOOTER - PROFESSIONAL REDESIGN
   ============================================ */

.footer {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-secondary) 100%);
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
    border-radius: 60px 60px 0 0;
    margin-top: var(--spacing-2xl);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 102, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 212, 170, 0.08) 0%, transparent 50%);
    z-index: 0;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer h3 {
    color: #fff;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
}

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

.footer .logo-center img {
    height: 50px;
    width: auto;
    margin-bottom: var(--spacing-md);
    filter: brightness(0) invert(1);
}

.footer .logo-center p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin: 0;
}

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

.footer-nav li {
    margin-bottom: var(--spacing-sm);
}

.footer-nav li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
    transition: var(--transition-base);
    display: inline-block;
}

.footer-nav li a:hover {
    color: var(--secondary);
    transform: translateX(4px);
}

.social-icons {
    display: flex;
    gap: var(--spacing-md);
}

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

.social-icons a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.3);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 991px) {
    .hero-section {
        min-height: auto;
        padding: var(--spacing-2xl) 0;
    }
    
    .row.services-one {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    nav.navbar {
        background: rgba(15, 23, 42, 1) !important;
    }
}

@media (max-width: 767px) {
    :root {
        --spacing-3xl: 4rem;
        --spacing-2xl: 3rem;
    }
    
    .hero-section {
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
        padding: 60px 0 40px;
        min-height: auto;
    }
    
    .hero-section h1 {
        font-size: clamp(1.5rem, 6vw, 2.25rem);
        margin-bottom: 1rem;
    }
    
    .footer {
        border-radius: 30px 30px 0 0;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-padding {
    padding: var(--spacing-3xl) 0;
}

.container-narrow {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

