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

html {
    scroll-behavior: smooth;
}

/* Better Mobile Responsiveness */
* {
    box-sizing: border-box;
}

/* Prevent horizontal overflow */
body, html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* Brand Colors for Carlo Cartage Ltd. - 2025 Edition */
:root {
    --brand-blue: #4A67E5;
    --brand-red: #FF5A5A;
    --dark-blue: #2C3E8D;
    --light-blue: #6B7FEA;
    --text-dark: #1a1a1a;
    --text-light: #6b7280;
    --background: #000000;
    --surface: #f8fafc;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    /* Cookie UI variables mapped to brand palette */
    --primary-color: var(--brand-blue);
    --primary-dark: var(--dark-blue);
    --light-gray: var(--border);
    --text-gray: var(--text-light);
    --success-color: #10b981;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: #000000;
    overflow-x: hidden;
    font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0);
    padding: 1rem 0;
    z-index: 1000;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.7);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

.header.scrolled .logo-image {
    filter: brightness(0) invert(1);
}

.header.scrolled .logo:hover .logo-image {
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(74, 103, 229, 0.6));
}

.header.scrolled .logo-text {
    color: white;
}

.header.scrolled .nav-menu a {
    color: white;
}

.header.scrolled .mobile-menu-btn {
    color: white;
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.logo-image {
    height: 55px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    filter: brightness(0) invert(0);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.logo:hover .logo-image {
    filter: brightness(0) invert(0) drop-shadow(0 0 8px rgba(74, 103, 229, 0.6));
    transform: scale(1.05);
}

.logo-text {
    color: #000000;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Oswald', 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s ease;
}

.logo-text i {
    color: var(--brand-blue);
    font-size: 1.3rem;
}

.logo:hover .logo-text {
    color: var(--brand-red);
}

.logo:hover .logo-text i {
    color: var(--light-blue);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--brand-red);
}

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

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

/* Language Switcher */
.language-switcher {
    margin-left: 0;
    display: flex;
    align-items: center;
}

.language-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 0.9rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    height: fit-content;
}

.language-link:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    color: #fff;
}

.language-link .flag {
    font-size: 1.1rem;
}

.language-link .lang-text {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1;
}

/* Language switcher for scrolled header */
.header.scrolled .language-link {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.header.scrolled .language-link:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.mobile-menu-btn {
    display: none;
    color: #000000;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section - Image Background */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../images/hero/slide-shipping-1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: 1;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

/* Mobile Hero - Image Background */
@media (max-width: 768px) {
    .hero-video {
        display: none;
    }
    
    .hero {
        background: url('../images/hero/slide-shipping-1.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    
    .hero-overlay {
        display: none;
        /* No overlay - image shows clearly */
    }
}

.hero-content {
    text-align: left;
    color: #000000;
    z-index: 3;
    max-width: 900px;
    padding: 4rem 2rem 0 2rem;
    position: relative;
    margin-left: 0;
    margin-right: auto;
    transition: opacity 0.3s ease;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    animation: slideInUp 1s ease 0.1s both;
    color: #000000;
}

.hero-content h1 {
    font-family: 'Oswald', 'Inter', sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: slideInUp 1s ease 0.2s both;
    letter-spacing: 0.02em;
    line-height: 1.1;
    text-transform: uppercase;
    color: #000000;
}

.hero-content p {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 2.5rem;
    animation: slideInUp 1s ease 0.3s both;
    font-weight: 400;
    line-height: 1.6;
    opacity: 0.95;
    color: rgba(0, 0, 0, 0.8);
    max-width: 700px;
    margin-left: 0;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, var(--brand-red), #E54545);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.01em;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideInUp 1s ease 0.4s both;
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    background: linear-gradient(135deg, #FF6B6B, var(--brand-red));
    border-color: rgba(255, 255, 255, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: left;
    flex-wrap: wrap;
    align-items: center;
}

.cta-button-secondary {
    background: linear-gradient(135deg, var(--brand-blue), var(--dark-blue)) !important;
    gap: 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cta-button-secondary:hover {
    background: linear-gradient(135deg, var(--light-blue), var(--brand-blue)) !important;
}



/* Portfolio Section - White Background with Black Cards */
.customers {
    padding: 4rem 0;
    background: #ffffff;
    color: #000000;
}

.customers-header {
    text-align: center;
    margin-bottom: 2rem;
}

.customers-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.9);
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.customers-badge i {
    color: var(--brand-blue);
}

.customers-logo-section {
    text-align: center;
    margin: 1rem 0;
}



.customers .section-title {
    font-family: 'Oswald', 'Inter', sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 0.75rem;
    animation: fadeInUp 1s ease 0.3s both;
}

.customers .section-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 400;
    /* On white background, use dark text for readability */
    color: rgba(0, 0, 0, 0.75);
    margin-bottom: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    animation: fadeInUp 1s ease 0.4s both;
}

.customers-logos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 1rem 0;
}

.customer-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 1s ease calc(0.3s + var(--delay, 0s)) both;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    height: 100px;
}

.customer-logo-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 103, 229, 0.03), transparent);
    transition: left 0.6s ease;
}

.customer-logo-item:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(74, 103, 229, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.95);
}

.customer-logo-item:hover::before {
    left: 100%;
}

.customer-logo {
    max-width: 160px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(100%) opacity(0.7);
    position: relative;
    z-index: 2;
}

.customer-logo-item:hover .customer-logo {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}



/* Portfolio Grid Styles */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 1.25rem 0;
}

.portfolio-item {
    animation: fadeInUp 1s ease calc(0.3s + var(--delay, 0s)) both;
}

.portfolio-card {
    background: #000000;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    padding: 1.25rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 200px;
}



.portfolio-card:hover {
    border-color: rgba(74, 103, 229, 0.5);
    background: #1a1a1a;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.portfolio-icon {
    font-size: 1.75rem;
    color: white;
    margin-bottom: 0.75rem;
    transition: color 0.2s ease;
}

.portfolio-card:hover .portfolio-icon {
    color: var(--brand-red);
}

.portfolio-card h3 {
    font-family: 'Oswald', 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.3;
}

.portfolio-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
    margin-bottom: 0;
    font-size: 0.8rem;
    flex-grow: 1;
}



/* Responsive Design */
@media (max-width: 768px) {
    .customers {
        padding: 2rem 0;
    }
    
    .customers-header {
        margin-bottom: 1.5rem;
    }
    

    
    .customers-logos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        padding: 0.5rem 0;
    }
    
    .customer-logo-item {
        padding: 0.75rem;
        height: 80px;
    }
    
    .customer-logo {
        max-width: 130px;
        max-height: 60px;
    }
    
    /* Portfolio Responsive */
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1rem;
        max-width: 600px;
    }
    
    .portfolio-card {
        padding: 1rem 0.875rem;
        min-height: 180px;
    }
    
    .portfolio-icon {
        font-size: 1.9rem;
    }
}

@media (max-width: 480px) {
    .customers-logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .customer-logo-item {
        height: 70px;
        padding: 0.5rem;
    }
    
    .customer-logo {
        max-width: 100px;
        max-height: 45px;
    }
    
    /* Portfolio Mobile */
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 0.875rem;
        padding: 0.875rem;
        max-width: 320px;
    }
    
    .portfolio-card {
        padding: 0.875rem 0.75rem;
        min-height: 160px;
    }
    
    .portfolio-icon {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .portfolio-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .portfolio-card p {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }
    

}

/* Services Section - Consistent App Theme */
.services {
    padding: 4rem 0;
    background: #000000;
    color: white;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

.services-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.services-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.services-badge i {
    color: var(--brand-blue);
    font-size: 1rem;
}

.section-title {
    font-family: 'Oswald', 'Inter', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: white;
    animation: fadeInUp 1s ease 0.3s both;
}

.section-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-align: center;
    animation: fadeInUp 1s ease 0.4s both;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
    align-items: stretch;
}

.service-card {
    position: relative;
    background: transparent;
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.5);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    animation: fadeInUp 1s ease calc(0.5s + var(--delay, 0s)) both;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 320px;
}

.service-card.featured {
    background: transparent;
    border: 3px solid rgba(255, 255, 255, 0.5);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent,
        rgba(0, 0, 0, 0.05),
        transparent);
    transition: left 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 1;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.01);
    background: transparent;
    border: 3px solid rgba(255, 255, 255, 0.9);
    box-shadow: 
        0 20px 40px rgba(255, 255, 255, 0.1),
        0 0 30px rgba(255, 255, 255, 0.1);
}

.service-card-inner {
    padding: 1rem;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.service-price {
    background: linear-gradient(135deg, var(--brand-red), #E54545);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.service-icon {
    font-size: 1.75rem;
    background: linear-gradient(135deg, var(--brand-blue), var(--light-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-card:hover .service-icon {
    transform: scale(1.05) rotate(3deg);
    background: linear-gradient(135deg, var(--brand-red), var(--brand-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-badge {
    background: linear-gradient(135deg, var(--brand-red), #E54545);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card h3 {
    font-family: 'Oswald', 'Inter', sans-serif;
    font-size: clamp(0.9rem, 1.8vw, 1.15rem);
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: #ffffff;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    line-height: 1.2;
}

.service-card p {
    font-size: clamp(0.75rem, 1.1vw, 0.85rem);
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.8rem;
    font-weight: 400;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.6rem;
    font-weight: 500;
}

.service-features li i {
    color: var(--brand-blue);
    font-size: 0.8rem;
    width: 16px;
    flex-shrink: 0;
}

.service-card:hover .service-features li i {
    color: var(--brand-red);
}



.service-highlight {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.4);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
    align-self: center;
    text-align: center;
}

.services-cta {
    background: #ffffff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 2rem 1.5rem;
    border-radius: 0;
    animation: fadeInUp 1s ease 0.8s both;
}

.services-cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.services-cta-text {
    text-align: left;
}

.services-cta-image {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 1rem;
}

.cta-image {
    max-width: 80%;
    height: auto;
    max-height: 180px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.cta-image:hover {
    transform: scale(1.05);
}

.services-cta h3 {
    font-family: 'Oswald', 'Inter', sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

.services-cta p {
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: 0;
    margin-right: 0;
    line-height: 1.5;
}

/* Work Process Section - Inverted Colors */
.work-process-section {
    padding: 4rem 0;
    background: #ffffff;
    color: #000000;
}

.work-process-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.work-process-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.9);
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease 0.1s both;
}

.work-process-badge i {
    color: var(--brand-blue);
}

.work-process-title {
    font-family: 'Oswald', 'Inter', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    animation: fadeInUp 1s ease 0.2s both;
}

.work-process-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    animation: fadeInUp 1s ease 0.3s both;
}

.work-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    align-items: stretch;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.process-card {
    background: #000000;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    padding: 1.75rem 1.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease calc(0.4s + var(--delay, 0s)) both;
    overflow: hidden;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent);
    transition: left 0.6s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    background: #1a1a1a;
    border-color: rgba(74, 103, 229, 0.5);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.process-card:hover::before {
    left: 100%;
}

.process-number {
    position: absolute;
    top: 10px;
    right: 15px;
    background: linear-gradient(135deg, var(--brand-red), #E54545);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    font-family: 'Oswald', sans-serif;
    box-shadow: 0 4px 12px rgba(255, 90, 90, 0.4);
    z-index: 10;
}

.process-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
}

.process-icon {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.process-card:hover .process-icon {
    color: var(--brand-red);
    transform: scale(1.05);
}

.process-card h3 {
    font-family: 'Oswald', 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-align: center;
    line-height: 1.3;
}

.process-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin: 0;
    text-align: center;
    flex-grow: 1;
}

.process-arrow {
    display: none;
}

.work-process-cta {
    text-align: center;
    animation: fadeInUp 1s ease 0.8s both;
}

.process-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--brand-red), #E54545);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 90, 90, 0.3);
    text-transform: uppercase;
}

.process-cta-button:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #FF6B6B, var(--brand-red));
    box-shadow: 0 8px 25px rgba(255, 90, 90, 0.4);
}

.process-cta-button i {
    font-size: 1rem;
}

.cta-icon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: center;
    justify-items: center;
    height: 100%;
}

.cta-icon-grid i {
    font-size: 3rem;
    color: var(--brand-blue);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.cta-icon-grid i:hover {
    color: var(--brand-red);
    transform: scale(1.2) rotate(10deg);
}

/* Services Responsive Design */
@media (max-width: 768px) {
    .services {
        padding: 3rem 0;
    }
    
    .services-header {
        margin-bottom: 2rem;
    }
    
    .services-badge {
        margin-bottom: 1rem;
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    

    
    .service-card-inner {
        padding: 1rem;
    }
    
    .service-card {
        min-height: 380px;
    }
    
    .service-header {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        text-align: center;
    }
    
    .service-icon {
        font-size: 1.75rem;
    }
    
    .service-features {
        align-items: center;
    }
    
    .services-cta {
        padding: 1.5rem 1rem;
        margin: 0 1rem;
    }
    
    .services-cta-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .services-cta-text {
        text-align: center;
    }
    
    /* Work Process Section Responsive */
    .work-process-section {
        padding: 3rem 0;
    }
    
    .work-process-container {
        padding: 0 1rem;
    }
    
    .work-process-header {
        margin-bottom: 2rem;
    }
    
    .work-process-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-bottom: 2rem;
        max-width: 400px;
    }
    
    .process-card {
        padding: 1.5rem 1.25rem;
        min-height: 180px;
    }
    
    .process-icon {
        font-size: 2rem;
    }
    
    .process-card h3 {
        font-size: 1rem;
    }
    
    .process-card p {
        font-size: 0.8rem;
    }
    
    .process-cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Work Process Tablet Responsive */
    .work-process-grid {
        gap: 1.25rem;
        max-width: 700px;
    }
    
    .process-card {
        padding: 1.5rem 1.25rem;
        min-height: 200px;
    }
    
    .process-icon {
        font-size: 2.25rem;
    }
    
    .process-card h3 {
        font-size: 1rem;
    }
    
    .process-card p {
        font-size: 0.8rem;
    }
    

    
    .cta-icon-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .cta-icon-grid i {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 40px;
        max-width: 180px;
    }
    
    .services {
        padding: 2.5rem 0;
    }
    
    .service-card-inner {
        padding: 0.875rem;
    }
    
    .service-card {
        min-height: 350px;
    }
    
    .services-cta {
        padding: 1.25rem 0.75rem;
    }
    
    .services-cta-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Work Process Section Mobile */
    .work-process-section {
        padding: 2.5rem 0;
    }
    
    .work-process-container {
        padding: 0 0.75rem;
    }
    
    .work-process-header {
        margin-bottom: 2rem;
    }
    
    .work-process-grid {
        gap: 1rem;
        margin-bottom: 1.5rem;
        max-width: 350px;
    }
    
    .process-card {
        padding: 1.25rem 1rem;
        min-height: 160px;
    }
    
    .process-number {
        width: 28px;
        height: 28px;
        font-size: 0.7rem;
        top: 8px;
        right: 12px;
    }
    
    .process-icon {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }
    
    .process-card h3 {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .process-card p {
        font-size: 0.75rem;
        margin-bottom: 0;
    }
    
    .process-cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .cta-icon-grid {
        gap: 0.75rem;
    }
    
    .cta-icon-grid i {
        font-size: 1.5rem;
    }
}

/* Services Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section */
.about {
    padding: 6rem 0;
    background: #000000;
    color: white;
}

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

.about-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: white;
}

.about-logo {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.about-logo-image {
    height: 120px;
    width: auto;
    max-width: 400px;
    object-fit: contain;
    /* Combine drop-shadow into filter for valid syntax */
    filter: brightness(0) invert(1) drop-shadow(0 4px 12px rgba(255, 255, 255, 0.2));
    opacity: 0.9;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.about-logo-image:hover {
    opacity: 1;
    transform: scale(1.05);
    filter: brightness(0) invert(1) drop-shadow(0 6px 16px rgba(255, 255, 255, 0.3));
}

.about-brand {
    text-align: center;
    color: white;
    padding: 0;
    background: transparent;
    border-radius: 0;
    backdrop-filter: none;
    border: none;
    transition: transform 0.3s ease;
}

.about-brand:hover {
    background: transparent;
    transform: translateY(-5px);
    box-shadow: none;
}

.main-logo {
    width: 180px;
    height: auto;
    margin-bottom: 0;
    display: block;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.about-brand:hover .main-logo {
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(74, 103, 229, 0.6));
    transform: scale(1.05);
}

.about-brand h3 {
    font-family: 'Oswald', 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: white;
}

.about-brand p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-weight: 500;
}

/* Solutions Showcase */
.solutions-showcase {
    margin-top: 3rem;
    text-align: center;
}

.solutions-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.solution-logo {
    background: transparent;
    backdrop-filter: none;
    border: none;
    border-radius: 0;
    padding: 0;
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.solution-logo:hover {
    background: transparent;
    transform: translateY(-3px);
    box-shadow: none;
    border-color: transparent;
}

.solution-logo-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.solution-logo:hover .solution-logo-img {
    filter: none;
    transform: scale(1.1);
}

.solution-logo span {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Contact Section - Location Cards */
.contact-locations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.location-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.location-card h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.location-card h3 i {
    color: var(--brand-blue);
    margin-right: 0.5rem;
}

/* Contact Section - Clean 2025 Design */
.contact {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    background: #000000;
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 70%, rgba(74, 103, 229, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 90, 90, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(0, 0, 0, 0.1) 0%, 
        rgba(13, 30, 45, 0.2) 50%, 
        rgba(0, 0, 0, 0.1) 100%);
    z-index: 2;
}

.container {
    position: relative;
    z-index: 3;
}

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

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.contact-badge i {
    color: var(--brand-blue);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.contact-info-section {
    width: 100%;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-info-card {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact-info-card:hover {
    transform: translateY(-5px);
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: var(--brand-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.contact-info-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-info-card h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-family: 'Oswald', sans-serif;
}

.contact-info-card h3 i {
    color: var(--brand-blue);
    margin-right: 0.5rem;
}

.contact-info-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.contact-info-card a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

.contact-info-card a:hover {
    color: var(--brand-blue);
    text-decoration: underline;
}

.contact-form-section {
    width: 100%;
}

.contact-form-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    color: #000000;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Oswald', sans-serif;
}

.form-header p {
    color: rgba(0, 0, 0, 0.6);
    font-size: 1rem;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    height: 100%;
    justify-content: space-between;
}

/* Form Message Styles */
.form-message {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    border-left: 4px solid;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    animation: slideIn 0.3s ease;
}

.form-message-success {
    border-left-color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.form-message-error {
    border-left-color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.message-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.form-message-success .message-content {
    color: #065f46;
}

.form-message-error .message-content {
    color: #991b1b;
}

.form-message i {
    font-size: 1.1rem;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Oswald', sans-serif;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 1rem;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 0;
    font-size: 0.95rem;
    color: #000000;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--brand-blue);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(74, 103, 229, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-group select option {
    background: #ffffff;
    color: #000000;
}

.contact-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, var(--brand-red), #E54545);
    border: none;
    border-radius: var(--radius-lg);
    color: white;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 90, 90, 0.3);
    margin-top: 1.5rem;
    font-family: 'Oswald', sans-serif;
}

.contact-submit-btn:hover {
    background: linear-gradient(135deg, #FF6B6B, var(--brand-red));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 90, 90, 0.4);
}

/* Contact Section Responsive */
@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .contact-info-card {
        padding: 1.5rem;
        height: 160px;
    }
    
    .contact-info-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.75rem;
    }
    
    .contact-info-icon i {
        font-size: 1.2rem;
    }
    
    .contact-info-card h4 {
        font-size: 1rem;
    }
    
    .contact-info-card p {
        font-size: 0.85rem;
    }
    
    .contact-form-card {
        padding: 2rem;
    }
    
    .form-header h3 {
        font-size: 1.5rem;
    }
    
    .form-header p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info-card {
        height: 140px;
    }
    
    .contact-form-card {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background: #ffffff;
    color: #000000;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo-image {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: brightness(0) invert(0);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.footer-logo-image:hover {
    filter: brightness(0) invert(0) drop-shadow(0 0 8px rgba(74, 103, 229, 0.6));
    transform: scale(1.05);
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--brand-blue);
    font-family: 'Oswald', 'Inter', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section p {
    color: #000000;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    color: var(--brand-blue);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(74, 103, 229, 0.1);
    border-radius: 50%;
    color: var(--brand-blue);
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease;
    border: 1px solid rgba(74, 103, 229, 0.2);
}

.social-links a:hover {
    background: var(--brand-blue);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(74, 103, 229, 0.3);
}

.footer-bottom {
    text-align: center;
    padding: 0.75rem 0;
    border-top: 1px solid #e2e8f0;
    background: #000000;
    color: #ffffff;
    font-size: 0.9rem;
    margin: 0 -100vw 0 -100vw;
    padding-left: 100vw;
    padding-right: 100vw;
    margin-bottom: -25px;
    padding-bottom: calc(0.75rem + 25px);
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-image {
        height: 45px;
        max-width: 220px;
    }
    
    .mobile-menu-btn {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        padding: 1rem;
    }

    .nav-menu.active {
        display: flex;
    }
    /* Ensure mobile dropdown links are readable on dark background */
    .nav-menu a {
        color: #ffffff;
    }
    
    .nav-menu a:hover,
    .nav-menu a.active {
        color: var(--brand-red);
    }
    
    .nav-menu a::after {
        bottom: -3px;
    }
    
    /* Mobile language switcher */
    .language-switcher {
        margin-left: 0;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .language-link {
        justify-content: center;
        padding: 0.8rem 1rem;
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.15);
    }
    
    .hero-content {
        max-width: 100%;
        padding: 3rem 1rem 0 1rem;
        text-align: center;
        margin: 0 auto;
    }
    
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-content h1 {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 1.5rem;
    }
    
    .hero-content p {
        font-size: clamp(1rem, 4vw, 1.2rem);
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .cta-button {
        width: 100%;
        text-align: center;
        max-width: 280px;
    }
    
    .services {
        padding: 3rem 0;
    }
    
    .about-logo-image {
        height: 80px;
        max-width: 300px;
    }
    
    /* Solutions Showcase Tablet */
    .solutions-logos {
        gap: 2rem;
    }
    
    .solution-logo {
        padding: 0;
    }
    
    .main-logo {
        width: 140px;
    }
    
    .solution-logo-img {
        width: 90px;
        height: 90px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .service-card {
        padding: 1.25rem 1rem;
        margin: 0 0.25rem;
    }



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

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact {
        padding: 3rem 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-locations {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .location-card {
        padding: 1.5rem;
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .carousel-arrows {
        display: none;
    }

    .stats {
        grid-template-columns: 1fr;
    }
    
    /* Solutions Showcase Mobile */
    .solutions-logos {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .solution-logo {
        padding: 0;
    }
    
    .main-logo {
        width: 120px;
    }
    
    .solution-logo-img {
        width: 70px;
        height: 70px;
    }
    
    .solution-logo span {
        font-size: 0.75rem;
    }
}

/* Scroll animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

/* iPad Landscape & Small Desktop (1024px and below) */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
        max-width: 100%;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .work-process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* iPad Portrait & Large Phones (768px and below) */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem !important;
        max-width: 100% !important;
        margin: 0 auto;
        width: 100%;
    }
    
    /* Hero Section Optimization */
    .hero {
        min-height: 70vh;
        padding: 2rem 0;
    }
    
    .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 2rem 1rem;
        text-align: center;
        box-sizing: border-box;
    }
    
    .hero-content h1 {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-content p {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
        line-height: 1.5;
        margin-bottom: 2rem;
    }
    
    /* Navigation */
    .nav-container {
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Services Grid - Single Column */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
        width: 100%;
        max-width: 100%;
    }
    
    .service-card {
        margin: 0;
        max-width: 100%;
    }
    
    /* Process Cards - Single Column */
    .work-process-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
        width: 100%;
        max-width: 100%;
    }
    
    .process-card {
        margin: 0;
        max-width: 100%;
    }
    
    /* Portfolio Grid - Single Column */
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
        width: 100%;
        max-width: 100%;
    }
    
    /* About Section */
    .about-content {
        text-align: center;
    }
    
    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    /* Contact Section */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0;
        width: 100%;
        max-width: 100%;
    }
    
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        text-align: left;
    }
    
    /* Button Adjustments */
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

/* Mobile Phones (480px and below) */
@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem !important;
    }
    /* Ensure text alignment is centered on very small screens */
    .about-text,
    .services-header,
    .work-process-header,
    .contact-header,
    .services-cta-text {
        text-align: center;
    }
    
    /* Hero Optimization for Small Screens */
    .hero {
        min-height: 60vh;
        padding: 1.5rem 0;
    }
    
    .hero-content {
        padding: 1.5rem 0.75rem;
    }
    
    .hero-content h1 {
        font-size: clamp(1.5rem, 6vw, 2rem);
        line-height: 1.1;
        margin-bottom: 0.75rem;
    }
    
    .hero-content p {
        font-size: clamp(0.85rem, 4vw, 1rem);
        line-height: 1.4;
        margin-bottom: 1.5rem;
    }
    
    /* Navigation */
    .nav-container {
        padding: 0 0.75rem;
    }
    
    .logo-image {
        height: 35px;
        max-width: 160px;
    }
    
    /* Stats Grid - 2x2 on phones */
    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .stat {
        padding: 1rem;
        text-align: center;
    }
    
    .stat-number {
        font-size: clamp(1.2rem, 5vw, 1.5rem);
        margin-bottom: 0.25rem;
    }
    
    .stat-label {
        font-size: clamp(0.7rem, 3vw, 0.85rem);
    }
    
    /* Contact Info Grid - Single Column */
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-info-card {
        padding: 1.5rem;
        height: auto;
        min-height: 120px;
    }
    
    /* Footer - Single Column */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    /* Service Cards */
    .service-card {
        min-height: 280px;
        margin-bottom: 1rem;
    }
    
    .service-card-inner {
        padding: 1.25rem;
    }
    
    /* Process Cards */
    .process-card {
        min-height: 200px;
        padding: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .process-number {
        top: 8px;
        right: 8px;
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    /* Typography Improvements */
    h1, h2, h3 {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    h2 {
        font-size: clamp(1.3rem, 5vw, 1.8rem);
        line-height: 1.2;
    }
    
    h3 {
        font-size: clamp(1rem, 4vw, 1.3rem);
        line-height: 1.3;
    }
    
    /* Button Improvements */
    .cta-button {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .process-cta-button {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
        padding: 0.875rem 1.5rem;
        font-size: 0.85rem;
    }
    
    /* Form Improvements */
    .contact-form-card {
        padding: 1.5rem;
        min-height: auto;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    /* Section Spacing */
    section {
        padding: 2.5rem 0;
    }
    
    .services,
    .work-process-section,
    .contact {
        padding: 3rem 0;
    }
}

/* Ultra-wide phones and small tablets (landscape) */
@media (max-width: 640px) and (orientation: landscape) {
    .hero {
        min-height: 50vh;
        padding: 1rem 0;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
    }
    
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Fixes for very small screens */
@media (max-width: 360px) {
    .container {
        padding: 0 0.5rem !important;
    }
    
    .hero-content {
        padding: 1rem 0.5rem;
    }
    
    .service-card-inner,
    .process-card {
        padding: 1rem;
    }
    
    .cta-button {
        padding: 0.875rem 1.25rem;
        font-size: 0.85rem;
        max-width: 250px;
    }
    
    .stats {
        gap: 0.75rem;
    }
    
    .stat {
        padding: 0.75rem;
    }
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    border-top: 3px solid var(--primary-color);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h4 {
    color: white;
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.cookie-text p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-text a {
    color: var(--brand-blue);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-width: 100px;
}

.cookie-btn-accept {
    background: var(--brand-blue);
    color: white;
}

.cookie-btn-accept:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
}

.cookie-btn-reject {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.cookie-btn-customize {
    background: transparent;
    color: var(--brand-blue);
    border: 2px solid var(--brand-blue);
}

.cookie-btn-customize:hover {
    background: var(--brand-blue);
    color: white;
}

/* Cookie Preferences Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: white;
    border-radius: var(--radius-lg);
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 2rem;
    position: relative;
    color: #000; /* ensure text is visible on white */
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-gray);
}

.cookie-modal-header h3 {
    margin: 0;
    color: var(--dark-blue);
}

.cookie-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-gray);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cookie-close:hover {
    background: var(--light-gray);
    color: var(--dark-blue);
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-md);
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.cookie-category h4 {
    margin: 0;
    color: var(--dark-blue);
    font-size: 1rem;
}

.cookie-category p {
    margin: 0;
    color: #222;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 24px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-slider {
    background-color: var(--primary-color);
}

.cookie-toggle input:checked + .cookie-slider:before {
    transform: translateX(26px);
}

.cookie-toggle input:disabled + .cookie-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 2px solid var(--light-gray);
}

/* iPad specific optimizations */
@media (min-width: 768px) and (max-width: 1024px) {
    /* iPad Portrait and Landscape */
    .hero-content {
        max-width: 80%;
        margin: 0 auto;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .work-process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        max-width: 600px;
        margin: 2rem auto 0;
    }
    
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        max-width: 900px;
        margin: 0 auto;
    }
}

/* Legal Pages Styles */
.legal-content {
    padding: 6rem 0 4rem;
    background: var(--light-gray);
    min-height: 100vh;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 3px solid var(--primary-color);
}

.legal-header h1 {
    color: var(--dark-blue);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.last-updated {
    color: var(--text-gray);
    font-style: italic;
    margin: 0;
}

.legal-body {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.legal-body h2 {
    color: var(--dark-blue);
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--light-gray);
}

.legal-body h2:first-child {
    margin-top: 0;
}

.legal-body h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin: 2rem 0 1rem 0;
}

.legal-body h4 {
    color: var(--dark-blue);
    font-size: 1.1rem;
    margin: 1.5rem 0 0.5rem 0;
    font-weight: 600;
}

.legal-body p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-body ul {
    color: var(--text-gray);
    line-height: 1.7;
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-body li {
    margin-bottom: 0.5rem;
}

.legal-body a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.legal-body a:hover {
    color: var(--primary-dark);
}

/* Cookie Categories */
.cookie-categories {
    margin: 2rem 0;
}

.cookie-category-detail {
    background: var(--light-gray);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-color);
}

.cookie-category-detail h3 {
    margin-top: 0;
    color: var(--dark-blue);
}

.cookie-list {
    margin-top: 1rem;
}

.cookie-list ul {
    margin-left: 1rem;
}

.cookie-list ul ul {
    margin-left: 1.5rem;
    list-style-type: circle;
}

/* Management Options */
.management-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.option {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.option:hover {
    border-color: var(--primary-color);
}

.option h3 {
    margin-top: 0;
    color: var(--dark-blue);
}

/* Retention Table */
.retention-table {
    overflow-x: auto;
    margin: 1.5rem 0;
}

.retention-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.retention-table th,
.retention-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--light-gray);
}

.retention-table th {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.retention-table tr:last-child td {
    border-bottom: none;
}

.retention-table tr:nth-child(even) {
    background: rgba(248, 249, 250, 0.5);
}

/* Your Rights Section */
.your-rights ul {
    background: var(--light-gray);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--success-color);
}

/* Contact Info */
.contact-info {
    background: var(--primary-color);
    color: white;
    padding: 2rem;
    border-radius: var(--radius-md);
    margin: 2rem 0;
}

.contact-info h2 {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.contact-info p,
.contact-info li {
    color: rgba(255, 255, 255, 0.9);
}

.contact-info a {
    color: white;
    font-weight: 600;
}

.contact-info a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Cookie Banner Mobile Responsiveness */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 1rem;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cookie-text {
        min-width: auto;
    }
    
    .cookie-actions {
        justify-content: center;
        width: 100%;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 80px;
        max-width: 120px;
    }
    
    .cookie-modal {
        padding: 1rem;
    }
    
    .cookie-modal-content {
        padding: 1.5rem;
        max-height: 90vh;
    }
    
    .cookie-modal-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cookie-btn {
        width: 100%;
        max-width: none;
    }
    
    /* Legal Pages Mobile */
    .legal-content {
        padding: 5rem 0 3rem;
    }
    
    .legal-header h1 {
        font-size: 2rem;
    }
    
    .legal-body {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .legal-body h2 {
        font-size: 1.5rem;
    }
    
    .legal-body h3 {
        font-size: 1.2rem;
    }
    
    .management-options {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .retention-table {
        font-size: 0.9rem;
    }
    
    .retention-table th,
    .retention-table td {
        padding: 0.75rem 0.5rem;
    }
}