/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Performance optimizations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Mobile touch optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Increase touch targets for mobile devices */
    .nav-link,
    .dropdown-menu li a,
    .cta-button,
    .service-btn,
    .products-tab,
    .feature-tag {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Disable hover effects on touch devices */
    .nav-link:hover::after,
    .dropdown-menu li a:hover,
    .cta-button:hover,
    .service-btn:hover,
    .products-tab:hover,
    .feature-tag:hover,
    .platform-card:hover,
    .solution-card:hover,
    .value-item:hover,
    .brand-item:hover {
        transform: none;
        box-shadow: none;
    }
    
    /* Optimize for touch scrolling */
    .hero,
    .products,
    .solutions,
    .about,
    .service {
        -webkit-overflow-scrolling: touch;
    }
}

/* Optimize animations */
.floating-card,
.brand-item,
.solution-card,
.value-item,
.cta-button,
.service-btn {
    will-change: transform;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    font-size: 16px;
    /* Performance optimizations */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Smooth scrolling for better UX */
html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, background-color, box-shadow;
}

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

.nav-logo h2 {
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    position: relative;
    margin: 0;
}

.nav-logo h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left center;
}

.nav-logo:hover h2::after {
    transform: scaleX(1);
}

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

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.nav-link:hover {
    color: #667eea;
    transform: translateY(-1px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left center;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    list-style: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Desktop dropdown styles */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Ensure PC navigation displays correctly */
@media (min-width: 769px) {
    .nav-menu {
        display: flex !important;
        position: static !important;
        flex-direction: row !important;
        background: none !important;
        width: auto !important;
        height: auto !important;
        overflow: visible !important;
    }
    
    .nav-link::after {
        display: block !important;
    }
}

    /* Mobile-specific dropdown styles (only apply on mobile) */
    @media (max-width: 768px) {
        .dropdown {
            display: none !important; /* Hide desktop dropdown on mobile */
        }
        
        .mobile-dropdown {
            display: block !important; /* Show mobile dropdown on mobile */
        }
    }

/* Desktop-specific styles (hide mobile dropdown on desktop) */
@media (min-width: 769px) {
    .mobile-dropdown {
        display: none !important; /* Hide mobile dropdown on desktop */
    }
    
    .dropdown {
        display: block !important; /* Show desktop dropdown on desktop */
    }
}

.dropdown-menu li a {
    display: block;
    padding: 0.5rem 1rem;
    color: #333;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.dropdown-menu li a:hover {
    background: #f8f9fa;
    color: #667eea;
    transform: translateX(5px);
}

.nav-lang {
    display: flex;
    gap: 0.5rem;
}

.lang-btn {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.lang-btn.active {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.lang-btn:hover:not(.active) {
    border-color: #667eea;
    color: #667eea;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background-color: #f7fafc;
}

.hamburger.active {
    background-color: #f1f5f9;
}

.bar {
    width: 25px;
    height: 3px;
    background: #2d3748;
    margin: 3px 0;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    overflow: hidden;
    /* Add subtle animation to background */
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 3.25rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2d3748;
}

.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #718096;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.125rem;
    font-weight: 700;
    color: #667eea;
    /* Add subtle pulse animation */
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.stat-label {
    font-size: 0.9rem;
    color: #718096;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-button {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    will-change: transform, box-shadow;
}

.cta-button.primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.cta-button.primary::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;
}

.cta-button.primary:hover::before {
    left: 100%;
}

.cta-button.secondary {
    background: white;
    color: #667eea;
    border: 2px solid #667eea;
}

.cta-button.secondary:hover {
    background: #667eea;
    color: white;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 0.875rem;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    animation: float 6s ease-in-out infinite;
    font-size: 0.9rem;
    will-change: transform;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-card:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.floating-card i {
    color: #667eea;
    font-size: 1rem;
}

.card-1 {
    top: 15%;
    left: 5%;
    animation-delay: 0s;
}

.card-2 {
    top: 55%;
    right: 15%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 15%;
    left: 15%;
    animation-delay: 4s;
}

.card-4 {
    top: 35%;
    right: 5%;
    animation-delay: 1s;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
}

.shape-1 {
    width: 250px;
    height: 250px;
    top: 8%;
    right: 8%;
}

.shape-2 {
    width: 180px;
    height: 180px;
    bottom: 15%;
    left: 3%;
}

.shape-3 {
    width: 120px;
    height: 120px;
    top: 45%;
    left: 45%;
}

/* Brands Section */
.brands {
    padding: 5rem 0;
    background: white;
}

.section-title {
    font-size: 2.375rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #2d3748;
}

.section-subtitle {
    text-align: center;
    color: #718096;
    font-size: 1.0625rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.brands-categories {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.brand-category {
    padding: 0.5rem 1rem;
    background: #f7fafc;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #667eea;
    font-weight: 500;
}

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

.brand-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid #f1f5f9;
    will-change: transform, box-shadow;
}

.brand-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.brand-logo {
    font-size: 1.375rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.brand-category-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #667eea;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 500;
}

/* Products Section */
.products {
    padding: 5rem 0;
    background: #f8fafc;
}

.products-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    margin-top: 2rem;
}

.products-tab {
    padding: 1rem 2rem;
    border: none;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.products-tab.active {
    background: #667eea;
    color: white;
}

.products-tab:hover:not(.active) {
    border-color: #667eea;
    color: #667eea;
}

.products-panel {
    display: none;
}

.products-panel.active {
    display: block;
}

/* Ensure internal section titles in products panels are properly centered */
.products-panel .section-title {
    text-align: center;
    margin-bottom: 1.5rem;
}

.products-panel .section-subtitle {
    text-align: center;
    margin-bottom: 3rem;
}

/* Middle Platform Solutions Styling */
.middle-platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    justify-content: center;
}

.platform-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid #f1f5f9;
    will-change: transform, box-shadow;
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left center;
}

.platform-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

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

.platform-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.platform-card:hover .platform-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.platform-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.platform-description {
    color: #718096;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.platform-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.feature-tag {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    color: #667eea;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-tag:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.mall-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
    justify-content: center;
}

.mall-feature {
    background: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    color: #667eea;
    border: 1px solid #e2e8f0;
}

.mall-solution-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin: 3rem 0 2rem;
    color: #2d3748;
}

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

.mall-solution-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.mall-solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.mall-solution-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.gradient-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.mall-solution-main {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.mall-solution-sub {
    font-size: 1rem;
    color: #667eea;
    font-weight: 500;
    margin-bottom: 1rem;
}

.mall-solution-desc {
    color: #718096;
    line-height: 1.6;
}

.mall-architecture {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 3rem;
}

.mall-architecture h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2d3748;
}

.mall-architecture p {
    color: #718096;
    margin-bottom: 0.5rem;
}

/* Capabilities Section */
.capabilities {
    padding: 5rem 0;
    background: white;
}

.capabilities-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #2d3748;
}

.capabilities-desc {
    text-align: center;
    color: #718096;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.capabilities-main-card {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 2rem;
}

.capabilities-visual {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.capabilities-main-title {
    font-size: 1.8rem;
    font-weight: 600;
}

.capabilities-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.capabilities-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.capabilities-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2d3748;
}

.capabilities-card p {
    color: #718096;
    line-height: 1.6;
}

/* Service Section */
.service {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.service-content {
    text-align: center;
}

.service-content h3 {
    font-size: 2.375rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.service-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.service-feature i {
    font-size: 1.2rem;
}

.service-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.service-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.service-btn.primary {
    background: white;
    color: #667eea;
}

.service-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

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

.service-btn.secondary:hover {
    background: white;
    color: #667eea;
}

.service-btn.outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.service-btn.outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Solutions Section */
.solutions {
    padding: 5rem 0;
    background: white;
}

.solution-category {
    margin-bottom: 4rem;
    margin-top: 2rem;
}

.solution-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1.5rem;
    text-align: center;
}

.solution-subtitle {
    text-align: center;
    color: #718096;
    font-size: 1.0625rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
}

.solution-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    will-change: transform, box-shadow;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left center;
}

.solution-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

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

.solution-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: white;
}

.solution-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.75rem;
}

.solution-card p {
    color: #718096;
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.solution-features {
    list-style: none;
    padding: 0;
}

.solution-features li {
    color: #4a5568;
    padding: 0.375rem 0;
    border-bottom: 1px solid #f1f5f9;
    position: relative;
    padding-left: 1.25rem;
    font-size: 0.875rem;
}

.solution-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.solution-features li:last-child {
    border-bottom: none;
}

/* About Us Section */
.about {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.about-text {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    width: 100%;
}

.about-story,
.about-mission {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-story:hover,
.about-mission:hover {
    transform: translateY(-5px);
}

.about-story h3,
.about-mission h3 {
    color: #2d3748;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-story p,
.about-mission p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1.0625rem;
}

.about-values h3 {
    color: #2d3748;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    width: 100%;
}

.value-item {
    background: white;
    padding: 1.25rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.value-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.value-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    color: white;
    font-size: 1.25rem;
}

.value-item h4 {
    color: #2d3748;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.value-item p {
    color: #718096;
    font-size: 0.875rem;
    line-height: 1.4;
}

.about-stats {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    justify-content: space-between;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    flex: 1;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    color: #4a5568;
    font-size: 0.9375rem;
    font-weight: 500;
}

/* Responsive About Us */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .value-item {
        min-height: 180px;
        padding: 1rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-card {
        flex: none;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .about-stats {
        flex-direction: column;
    }
    
    .stat-card {
        min-width: auto;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .value-item {
        min-height: 160px;
        padding: 1rem;
    }
}

/* Footer */
.footer {
    background: #2d3748;
    color: white;
    padding: 3rem 0;
}

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

.footer-links {
    margin-bottom: 2rem;
}

.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-links span {
    color: #4a5568;
    margin: 0 1rem;
}

.footer-info p {
    color: #a0aec0;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 1.5rem 0;
        z-index: 1000;
        height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    /* Improve mobile navigation animations */
    .nav-item {
        margin: 0;
        padding: 0;
    }
    
    .nav-link {
        padding: 1.25rem 2rem;
        border-bottom: 1px solid #f1f5f9;
        font-size: 1.1rem;
        font-weight: 500;
        color: #2d3748;
        display: block;
        text-decoration: none;
        transition: all 0.3s ease;
        text-align: center;
    }
    
    .nav-link:hover {
        background-color: #f7fafc;
        color: #667eea;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-link::after {
        display: none;
    }
    
    /* Mobile dropdown improvements */
    .mobile-dropdown {
        position: relative;
    }
    
    .mobile-dropdown-toggle {
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        gap: 0.5rem;
    }
    
    .mobile-dropdown-toggle i {
        transition: transform 0.3s ease;
    }
    
    .mobile-dropdown.active .mobile-dropdown-toggle i {
        transform: rotate(180deg);
    }
    
    .mobile-dropdown-menu {
        position: static;
        background: transparent;
        box-shadow: none;
        padding: 0;
        margin: 0;
        border: none;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    
    .mobile-dropdown.active .mobile-dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 200px;
    }
    
    .mobile-dropdown-menu li {
        margin: 0;
        padding: 0;
    }
    
    .mobile-dropdown-menu li a {
        padding: 1rem 2rem;
        color: #718096;
        font-size: 0.95rem;
        border-bottom: 1px solid #f1f5f9;
        display: block;
        text-decoration: none;
        transition: all 0.3s ease;
        text-align: center;
    }
    
    .mobile-dropdown-menu li a:hover {
        background-color: #f7fafc;
        color: #667eea;
    }
    
    .mobile-dropdown-menu li:last-child a {
        border-bottom: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .hero-visual {
        height: 300px;
        margin-top: 1rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .cta-button {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    /* Products section mobile improvements */
    .products-tabs {
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 2rem;
    }
    
    .products-tab {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .section-subtitle {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .mall-features {
        flex-direction: column;
        gap: 0.75rem;
        margin: 1.5rem 0;
    }
    
    .mall-feature {
        width: 100%;
        text-align: center;
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .brands-categories {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .capabilities-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-features {
        gap: 1.5rem;
        flex-direction: column;
    }
    
    .service-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .service-btn {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .mall-solution-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .solution-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .solution-card {
        padding: 1.5rem;
    }
    
    .solution-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .solution-card h4 {
        font-size: 1.25rem;
    }
    
    .solution-card p {
        font-size: 0.95rem;
    }
    
    .solution-features {
        margin-top: 1rem;
    }
    
    .solution-features li {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .middle-platform-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .platform-card {
        padding: 2rem;
    }
    
    .platform-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
    
    .platform-title {
        font-size: 1.25rem;
    }
    
    .platform-features {
        gap: 0.5rem;
    }
    
    .feature-tag {
        padding: 0.375rem 0.75rem;
        font-size: 0.8rem;
    }
    
    /* About section mobile improvements */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .value-item {
        min-height: 180px;
        padding: 1rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-card {
        flex: none;
        min-width: auto;
        padding: 1.5rem;
    }
    
    /* Footer mobile improvements */
    .footer-links {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-links span {
        display: none;
    }
    
    .footer-info p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    /* Container padding for small screens */
    .container {
        padding: 0 1rem;
    }
    
    /* Navigation improvements */
    .nav-logo h2 {
        font-size: 1.5rem;
    }
    
    .hamburger {
        margin-right: 0;
        padding: 6px;
    }
    
    .hamburger .bar {
        width: 22px;
        height: 2px;
        margin: 2px 0;
    }
    
    /* Hero section small screen optimizations */
    .hero {
        padding: 3rem 0;
    }
    
    .hero-container {
        padding: 0 0.5rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .hero-badge {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        margin: 1rem 0;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .hero-buttons {
        max-width: 280px;
    }
    
    .cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .hero-visual {
        height: 250px;
    }
    
    .floating-card {
        font-size: 0.8rem;
        padding: 0.75rem;
    }
    
    /* Section titles and content */
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
        text-align: center;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    /* Products section small screen */
    .products-tabs {
        margin-bottom: 1.5rem;
    }
    
    .products-tab {
        padding: 0.875rem;
        font-size: 0.95rem;
    }
    
    .mall-features {
        margin: 1rem 0;
    }
    
    .mall-feature {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    /* Solutions section small screen */
    .solution-category {
        margin-bottom: 3rem;
    }
    
    .solution-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
        text-align: center;
    }
    
    .solution-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .solution-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .solution-card {
        padding: 1.25rem;
    }
    
    .solution-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .solution-card h4 {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }
    
    .solution-card p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
    
    .solution-features {
        margin-top: 0.75rem;
    }
    
    .solution-features li {
        font-size: 0.85rem;
        margin-bottom: 0.375rem;
        line-height: 1.4;
    }
    
    /* Middle platform cards small screen */
    .middle-platform-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .platform-card {
        padding: 1.25rem;
    }
    
    .platform-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .platform-title {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }
    
    .platform-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        line-height: 1.5;
    }
    
    .platform-features {
        gap: 0.375rem;
    }
    
    .feature-tag {
        padding: 0.25rem 0.625rem;
        font-size: 0.75rem;
    }
    
    /* About section small screen */
    .about-content {
        gap: 1.5rem;
    }
    
    .about-story h3,
    .about-mission h3,
    .about-values h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
        text-align: center;
    }
    
    .about-story p,
    .about-mission p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .value-item {
        min-height: 160px;
        padding: 1rem;
    }
    
    .value-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .value-item h4 {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }
    
    .value-item p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.25rem;
    }
    
    .stat-card .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-card .stat-label {
        font-size: 0.85rem;
    }
    
    /* Service section small screen */
    .service-content h3 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
        text-align: center;
    }
    
    .service-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .service-features {
        gap: 1rem;
    }
    
    .service-feature {
        padding: 0.75rem;
    }
    
    .service-feature i {
        font-size: 1.25rem;
        margin-right: 0.5rem;
    }
    
    .service-feature span {
        font-size: 0.9rem;
    }
    
    .service-buttons {
        max-width: 280px;
    }
    
    .service-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    /* Footer small screen */
    .footer {
        padding: 2rem 0;
    }
    
    .footer-links {
        gap: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .footer-info p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    /* Modal improvements for small screens */
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .modal-header {
        padding: 1rem 1.5rem;
    }
    
    .modal-header h3 {
        font-size: 1.25rem;
    }
    
    .registration-form {
        padding: 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .form-group input,
    .form-group select {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .submit-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    /* Cookie banner small screen */
    .cookie-content {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .cookie-text h4 {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }
    
    .cookie-text p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .cookie-buttons {
        gap: 0.75rem;
    }
    
    .cookie-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

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

.modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 16px 16px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.close {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: opacity 0.3s ease;
}

.close:hover {
    opacity: 0.7;
}

.registration-form {
    padding: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2d3748;
    font-size: 0.95rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group input::placeholder {
    color: #a0aec0;
}

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 2rem;
    color: #2d3748;
}

.success-message h4 {
    color: #38a169;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.success-message p {
    color: #718096;
    line-height: 1.6;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
    
    .modal-header {
        padding: 1.25rem 1.5rem;
    }
    
    .registration-form {
        padding: 1.5rem;
    }
}

/* Policy Content Styles */
.policy-content {
    padding: 2rem;
    line-height: 1.6;
    color: #333;
    max-height: 60vh;
    overflow-y: auto;
}

.policy-content h4 {
    color: #667eea;
    margin: 1.5rem 0 0.75rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.policy-content h5 {
    color: #764ba2;
    margin: 1rem 0 0.5rem 0;
    font-size: 1rem;
    font-weight: 600;
}

.policy-content p {
    margin-bottom: 1rem;
}

.policy-content ul {
    margin: 0.75rem 0 1rem 1.5rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
}

.policy-content strong {
    color: #333;
    font-weight: 600;
}

/* Responsive Policy Content */
@media (max-width: 768px) {
    .policy-content {
        padding: 1.5rem;
        max-height: 65vh;
    }
    
    .policy-content h4 {
        font-size: 1rem;
    }
    
    .policy-content h5 {
        font-size: 0.95rem;
    }
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.5s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

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

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

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

.cookie-text p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.95;
}

.cookie-link {
    color: #ffd700;
    text-decoration: underline;
    font-weight: 500;
}

.cookie-link:hover {
    color: #fff;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
}

.cookie-btn.accept {
    background: #28a745;
    color: white;
}

.cookie-btn.accept:hover {
    background: #218838;
    transform: translateY(-2px);
}

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

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

/* Responsive Cookie Banner */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-btn {
        flex: 1;
        max-width: 150px;
    }
    
    .cookie-text h4 {
        font-size: 1rem;
    }
    
    .cookie-text p {
        font-size: 0.9rem;
    }
} 