        :root {
            --primary: #4F46E5;
            --primary-dark: #3730A3;
            --primary-light: #EEF2FF;
            --secondary: #FF6584;
            --light: #ffffff;
            --dark: #18181B;
            --darker: #111113;
            --success: #22C55E;
            --info: #0aca54;
            --warning: #FBBF24;
            --danger: #EF4444;
            --dark: #2A2D3E;
            --darker: #1F2130;
            --success: #2ED47A;
            --info: #0aca54;
            --warning: #FFB946;
            --danger: #F7685B;
            --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
            --glass-bg: rgba(255, 255, 255, 0.1);
            --glass-border: rgba(255, 255, 255, 0.2);
            --shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            --radius: 20px;
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            background: linear-gradient(135deg, #1F2130, #2A2D3E);
            color: var(--light);
            line-height: 1.6;
            min-height: 100vh;
            padding: 0;
            overflow-x: hidden;
            position: relative;
        }

        body::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 10% 20%, rgba(108, 99, 255, 0.1) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(255, 101, 132, 0.1) 0%, transparent 20%);
            z-index: -1;
        }

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

        .site-header {
            background: linear-gradient(135deg, 
                rgba(20, 20, 35, 0.95) 0%, 
                rgba(40, 20, 60, 0.95) 50%, 
                rgba(20, 35, 50, 0.95) 100%);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            color: white;
            padding: 1.5rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 
                0 10px 30px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.05);
            position: relative;

        }
        
        .site-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 20%, rgba(255, 0, 150, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 255, 255, 0.1) 0%, transparent 50%);
            z-index: -1;
            animation: headerRgbShift 6s ease-in-out infinite;
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 1rem;
            position: relative;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .logo:hover {
            transform: scale(1.05);
        }

        .logo-icon {
            font-size: 2.5rem;
            background: linear-gradient(135deg, #ff0080, #00ffff, #8000ff);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
            animation: logoRgbGradient 4s ease-in-out infinite;
        }

        .logo-text {
            font-weight: 800;
            font-size: 1.8rem;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #ff0080, #00ffff, #8000ff);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: logoRgbGradient 4s ease-in-out infinite;
            text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
        }

        .header-tagline {
            font-size: 1.1rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.9);
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 0.75rem 1.5rem;
            border-radius: 25px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }
        
        .header-tagline::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;
        }
        
        .header-tagline:hover {
            transform: translateY(-2px);
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.3);
            box-shadow: 
                0 8px 25px rgba(0, 0, 0, 0.2),
                0 0 0 1px rgba(255, 255, 255, 0.1);
        }
        
        .header-tagline:hover::before {
            left: 100%;
        }
        
        /* Header Animations */
        @keyframes headerRgbShift {
            0%, 100% { 
                background: 
                    radial-gradient(circle at 20% 20%, rgba(255, 0, 150, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 80% 80%, rgba(0, 255, 255, 0.1) 0%, transparent 50%);
            }
            50% { 
                background: 
                    radial-gradient(circle at 80% 20%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 20% 80%, rgba(150, 0, 255, 0.1) 0%, transparent 50%);
            }
        }
        
        @keyframes logoRgbGradient {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }
        
        /* Mobile Responsive Header */
        @media (max-width: 768px) {
            .site-header {
                padding: 1rem 0;
            }
            
            .header-container {
                padding: 0 1rem;
                flex-direction: column;
                gap: 1rem;
            }
            
            .logo {
                gap: 0.75rem;
            }
            
            .logo-icon {
                font-size: 2rem;
            }
            
            .logo-text {
                font-size: 1.5rem;
            }
            
            .header-tagline {
                font-size: 1rem;
                padding: 0.5rem 1rem;
            }
        }
        
        @media (max-width: 480px) {
            .logo-icon {
                font-size: 1.8rem;
            }
            
            .logo-text {
                font-size: 1.3rem;
            }
            
            .header-tagline {
                font-size: 0.9rem;
                padding: 0.4rem 0.8rem;
            }
        }

        header {
            text-align: center;
            margin-bottom: 3rem;
            padding-top: 1rem;
        }

        h1 {
            font-size: 3rem;
            font-weight: 800;
            margin: 2rem 0 1rem;
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1.2;
        }

        .subtitle {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            font-weight: 300;
        }

        .main-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2.5rem;
            perspective: 1200px;
        }

        .card {
            background: var(--glass-bg);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-radius: var(--radius);
            padding: 2.5rem;
            box-shadow: var(--card-shadow);
            transition: var(--transition);
            border: 1px solid var(--glass-border);
            transform-style: preserve-3d;
            position: relative;
            overflow: hidden;
        }

        .card::before {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            transform: translateZ(-1px);
            z-index: -1;
        }

        .card:hover {
            transform: translateY(-10px) rotateX(3deg) rotateY(2deg);
            box-shadow: var(--shadow);
            border-color: rgba(108, 99, 255, 0.4);
        }

        .upload-container {
            text-align: center;
        }

        .upload-area {
            border: 2px dashed var(--glass-border);
            border-radius: var(--radius);
            padding: 2.5rem;
            cursor: pointer;
            transition: var(--transition);
            margin-bottom: 2rem;
            position: relative;
            height: 380px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: rgba(31, 33, 48, 0.4);
            transform-style: preserve-3d;
        }

        .upload-area::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, rgba(108, 99, 255, 0.1) 0%, transparent 70%);
            opacity: 0;
            transition: var(--transition);
        }

        .upload-area:hover::before {
            opacity: 1;
        }

        .upload-area.active {
            border-color: var(--primary);
            background-color: rgba(108, 99, 255, 0.1);
        }

        .upload-default-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            transition: opacity 0.3s ease;
            z-index: 2;
        }

        .upload-icon {
            font-size: 5rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
            filter: drop-shadow(0 0 15px rgba(108, 99, 255, 0.5));
        }

        .upload-text {
            margin-bottom: 1.5rem;
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.1rem;
            max-width: 500px;
            line-height: 1.6;
        }

        .upload-buttons {
            display: flex;
            gap: 1.5rem;
            margin-top: 1rem;
            justify-content: center;
        }

        .upload-preview {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: none;
            align-items: center;
            justify-content: center;
            background: rgba(31, 33, 48, 0.9);
            z-index: 5;
        }

        .upload-preview.show {
            display: flex;
        }

        .close-preview {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            background: var(--glass-bg);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 16px;
            z-index: 10;
            transition: var(--transition);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            border: 1px solid var(--glass-border);
        }

        .close-preview:hover {
            background: var(--primary);
            transform: scale(1.1) rotate(90deg);
        }

        .image-preview {
            max-width: 90%;
            max-height: 90%;
            border-radius: calc(var(--radius) - 5px);
            object-fit: contain;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid var(--glass-border);
        }

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

        .btn {
            background: var(--gradient);
            color: white;
            border: none;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: var(--transition);
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.8rem;
            box-shadow: 0 8px 25px rgba(108, 99, 255, 0.4);
            position: relative;
            overflow: hidden;
            transform-style: preserve-3d;
            border: 1px solid rgba(255, 255, 255, 0.1);
            text-decoration: none;
        }

        .btn::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(255, 255, 255, 0.2), transparent);
            transform: translateY(100%);
            transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .btn:hover::before {
            transform: translateY(0);
        }

        .btn:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 12px 35px rgba(108, 99, 255, 0.5);
        }

        .btn:active {
            transform: translateY(0) scale(0.98);
        }

        .btn-icon {
            font-style: normal;
            font-size: 1.3rem;
        }

        .btn-download {
            background: linear-gradient(135deg, var(--success), #2ED47A);
            box-shadow: 0 8px 25px rgba(46, 212, 122, 0.4);
        }

        .btn-download:hover {
            box-shadow: 0 12px 35px rgba(46, 212, 122, 0.5);
        }

        .analyze-btn {
            min-width: 180px;
        }

        .btn-loader {
            display: none;
            width: 22px;
            height: 22px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-top: 3px solid white;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            position: absolute;
            right: 20px;
        }

        .btn-loader.show {
            display: block;
        }

        .btn-secondary {
            background: var(--glass-bg);
            color: var(--light);
            border: 1px solid var(--glass-border);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.15);
        }

        .btn:disabled {
            background: linear-gradient(135deg, #5a5a7a, #7a7a9a);
            cursor: not-allowed;
            transform: none;
            box-shadow: 0 4px 15px rgba(90, 90, 122, 0.3);
        }

        .results-container {
            height: 100%;
            display: none;
        }

        .results-container.show {
            display: block;
            animation: fadeIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .results-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid var(--glass-border);
            flex-wrap: wrap;
            gap: 1.5rem;
        }

        .results-actions {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .result-title {
            color: var(--light);
            font-weight: 700;
            font-size: 1.8rem;
            margin: 0;
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .food-header {
            display: flex;
            gap: 2rem;
            margin-bottom: 2.5rem;
            align-items: center;
        }

        .food-image-container {
            width: 150px;
            height: 150px;
            overflow: hidden;
            border-radius: var(--radius);
            flex-shrink: 0;
            box-shadow: var(--shadow);
            border: 3px solid var(--glass-border);
            transform-style: preserve-3d;
            transform: rotateY(-5deg);
            transition: var(--transition);
        }

        .food-image-container:hover {
            transform: rotateY(0) scale(1.05);
        }

        .food-result-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .food-info {
            flex: 1;
        }

        .nutrition-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2.5rem 0;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--card-shadow);
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid var(--glass-border);
        }

        .nutrition-table th {
            background: rgba(108, 99, 255, 0.3);
            color: white;
            text-align: left;
            padding: 1.2rem 1.5rem;
            font-weight: 600;
        }

        .nutrition-table td {
            padding: 1.2rem 1.5rem;
            border-bottom: 1px solid var(--glass-border);
            color: rgba(255, 255, 255, 0.9);
        }

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

        .nutrition-table tr:nth-child(even) {
            background: rgba(255, 255, 255, 0.05);
        }

        .food-name {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--light);
        }

        .food-description {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
        }

        .macro-chart {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .macro-item {
            background: rgba(40, 42, 60, 0.55);
            border-radius: 22px;
            box-shadow: 0 4px 32px 0 rgba(0,0,0,0.18);
            border: 1.5px solid rgba(255,255,255,0.13);
            padding: 2rem 1rem 1.2rem 1rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            transition: box-shadow 0.3s, transform 0.3s;
        }

        .macro-item::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 22px;
            background: linear-gradient(120deg, rgba(255,0,128,0.10), rgba(0,255,255,0.08), rgba(128,0,255,0.08));
            z-index: 0;
            pointer-events: none;
            animation: cardBgAnim 8s ease-in-out infinite alternate;
        }

        .macro-item:hover {
            box-shadow: 0 8px 40px 0 rgba(0,255,255,0.18), 0 1.5px 8px 0 rgba(255,0,128,0.10);
            transform: translateY(-6px) scale(1.03);
        }

        .macro-value {
            font-size: 2.1rem;
            font-weight: 800;
            background: linear-gradient(120deg, #ff0080, #00ffff, #8000ff);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: rgbGradient 4s ease-in-out infinite;
            margin-bottom: 0.5rem;
            z-index: 1;
            text-shadow: 0 2px 12px rgba(0,0,0,0.10);
        }

        .macro-label {
            font-size: 1.1rem;
            font-weight: 600;
            color: #fff;
            opacity: 0.92;
            z-index: 1;
            text-shadow: 0 1px 8px rgba(0,0,0,0.10);
        }

        .health-tag {
            display: inline-block;
            background: rgba(46, 212, 122, 0.15);
            color: var(--success);
            padding: 0.5rem 1.2rem;
            border-radius: 50px;
            font-size: 0.9rem;
            margin-right: 0.8rem;
            margin-bottom: 0.8rem;
            font-weight: 600;
            transition: var(--transition);
            border: 1px solid rgba(46, 212, 122, 0.3);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
        }

        .health-tag:hover {
            background: var(--success);
            color: var(--darker);
            transform: translateY(-3px);
        }

        .health-tags {
            margin: 2rem 0;
        }

        .recipe-section {
            margin-top: 2.5rem;
            padding: 2rem;
            background: rgba(31, 33, 48, 0.5);
            border-radius: var(--radius);
            border-left: 4px solid var(--primary);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            transform-style: preserve-3d;
            transform: translateZ(5px);
        }

        .recipe-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 1.2rem;
        }

        .recipe-text {
            font-size: 1.05rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.8);
            white-space: pre-line;
        }

        .reset-btn {
            background: var(--glass-bg);
            color: rgba(255, 255, 255, 0.9);
            border: 1px solid var(--glass-border);
            padding: 1rem 2rem;
            border-radius: 50px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: var(--transition);
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.8rem;
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
        }

        .reset-btn:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-3px);
        }

        .loader {
            display: none;
            width: 50px;
            height: 50px;
            border: 4px solid rgba(108, 99, 255, 0.2);
            border-top: 4px solid var(--primary);
            border-radius: 50%;
            margin: 2.5rem auto;
            animation: spin 1s linear infinite;
            position: relative;
        }

        .loader::after {
            content: "";
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            border: 4px solid rgba(255, 101, 132, 0.2);
            border-top: 4px solid var(--secondary);
            border-radius: 50%;
            animation: spin 1.5s linear infinite reverse;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

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

        .error-message {
            color: var(--danger);
            margin-top: 1.5rem;
            display: none;
            padding: 1rem;
            background: rgba(247, 104, 91, 0.15);
            border-radius: var(--radius);
            font-weight: 500;
            border: 1px solid rgba(247, 104, 91, 0.3);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
        }

        input[type="file"] {
            display: none;
        }

        footer {
            text-align: center;
            margin-top: 4rem;
            color: rgba(255, 255, 255, 0.5);
            padding: 2.5rem 0 1.5rem;
            border-top: 1px solid var(--glass-border);
            font-size: 0.95rem;
        }

        .features-section {
            margin: 5rem 0;
            text-align: center;
        }

        .features-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--light);
            margin-bottom: 3rem;
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

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

        .feature-card {
            background: var(--glass-bg);
            padding: 2.5rem 2rem;
            border-radius: var(--radius);
            box-shadow: var(--card-shadow);
            transition: var(--transition);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid var(--glass-border);
            transform-style: preserve-3d;
            transform: translateZ(0);
        }

        .feature-card:hover {
            transform: translateY(-15px) translateZ(20px);
            background: rgba(108, 99, 255, 0.15);
            box-shadow: var(--shadow);
        }

        .feature-icon {
            font-size: 3.5rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
            filter: drop-shadow(0 0 15px rgba(108, 99, 255, 0.3));
        }

        .feature-title {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--light);
        }

        .feature-desc {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1rem;
            line-height: 1.7;
        }

        .how-it-works {
            margin: 5rem 0;
        }

        .how-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--light);
            margin-bottom: 3rem;
            text-align: center;
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

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

        @media (min-width: 768px) {
            .steps {
                flex-direction: row;
            }
        }

        .step {
            flex: 1;
            position: relative;
            padding: 2.5rem 2rem;
            background: var(--glass-bg);
            border-radius: var(--radius);
            box-shadow: var(--card-shadow);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid var(--glass-border);
            transform-style: preserve-3d;
            transition: var(--transition);
            overflow: hidden;
        }

        .step:hover {
            transform: translateY(-10px) rotateX(5deg);
            box-shadow: var(--shadow);
        }

        .step::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient);
        }

        .step-number {
            position: absolute;
            top: -20px;
            right: 20px;
            font-size: 5rem;
            font-weight: 800;
            color: rgba(255, 255, 255, 0.05);
            z-index: 0;
        }

        .step-title {
            margin-bottom: 1.2rem;
            font-weight: 600;
            color: var(--light);
            font-size: 1.4rem;
            position: relative;
            z-index: 2;
        }

        .step-desc {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.05rem;
            line-height: 1.7;
            position: relative;
            z-index: 2;
        }

        .faq-section {
            margin: 5rem 0;
        }

        .faq-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--light);
            margin-bottom: 3rem;
            text-align: center;
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .faq-item {
            background: var(--glass-bg);
            border-radius: var(--radius);
            padding: 2rem;
            margin-bottom: 1.5rem;
            box-shadow: var(--card-shadow);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid var(--glass-border);
            transition: var(--transition);
            transform-style: preserve-3d;
            transform: translateZ(0);
        }

        .faq-item:hover {
            transform: translateY(-5px) translateZ(10px);
            background: rgba(31, 33, 48, 0.6);
        }

        .faq-question {
            font-weight: 600;
            color: var(--light);
            margin-bottom: 1rem;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .faq-question::before {
            content: "•";
            color: var(--primary);
            font-size: 2rem;
        }

        .faq-answer {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.05rem;
            line-height: 1.7;
            padding-left: 2rem;
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            
            .subtitle {
                font-size: 1.1rem;
            }
            
            .card {
                padding: 1.8rem;
            }
            
            .upload-area {
                height: 320px;
                padding: 1.5rem;
            }
            
            .btn {
                padding: 0.9rem 2rem;
                font-size: 1rem;
            }
            
            .food-header {
                flex-direction: column;
                text-align: center;
            }
            
            .food-image-container {
                margin: 0 auto 1.5rem;
            }
            
            .macro-chart {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .results-header {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            
            .results-actions {
                justify-content: center;
            }
        }
        
        @media (max-width: 480px) {
            h1 {
                font-size: 1.8rem;
            }
            
            .upload-buttons {
                flex-direction: column;
                gap: 1rem;
            }
            
            .btn {
                width: 100%;
            }
            
            .result-title {
                font-size: 1.5rem;
            }
            
            .food-name {
                font-size: 1.5rem;
            }
            
            .nutrition-table th,
            .nutrition-table td {
                padding: 1rem;
            }
            
            .features-title,
            .how-title,
            .faq-title {
                font-size: 2rem;
            }
        }

        .analyze-btn span {
            margin-right: 0;
        }

        .btn-loader.show {
            display: block;
        }

        .btn-loader.show ~ span {
            margin-right: 30px;
        }

        .floating {
            animation: floating 6s ease-in-out infinite;
        }

        @keyframes floating {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }

        /* Camera UI mobile styles */
        @media (max-width: 768px) {
            #cameraContainer {
                max-width: 100% !important;
                width: 100% !important;
                padding: 0 0.5rem;
            }
            #cameraPreview {
                width: 100% !important;
                height: 180px !important;
                max-width: 100% !important;
            }
            .upload-area {
                height: 260px;
                padding: 0.5rem;
            }
            .upload-buttons {
                flex-direction: column;
                gap: 1rem;
            }
        }
        @media (max-width: 480px) {
            #cameraPreview {
                height: 120px !important;
            }
            .android-app-section h2 {
                font-size: 1.3rem !important;
            }
            .android-app-section ul {
                font-size: 0.95rem !important;
            }
        }
        .android-app-section {
            margin: 4rem 0;
            text-align: center;
            width: 100%;
            perspective: 1000px;
        }
        
        .android-app-card {
            background: linear-gradient(135deg, 
                rgba(20, 20, 35, 0.95) 0%, 
                rgba(40, 20, 60, 0.95) 50%, 
                rgba(20, 35, 50, 0.95) 100%);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: 30px;
            padding: 3rem 2rem;
            max-width: 800px;
            margin: 0 auto;
            box-shadow: 
                0 25px 50px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
            color: #ffffff;
            position: relative;
            overflow: hidden;
            transform-style: preserve-3d;
            transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .android-app-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 20%, rgba(255, 0, 150, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(150, 0, 255, 0.05) 0%, transparent 70%);
            z-index: -1;
            animation: rgbShift 8s ease-in-out infinite;
        }
        
        .android-app-card:hover {
            transform: translateY(-10px) rotateX(5deg) rotateY(2deg);
            box-shadow: 
                0 35px 70px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
        }
        
        .android-card-header {
            margin-bottom: 2.5rem;
            position: relative;
            z-index: 2;
        }
        
        .android-icon-container {
            position: relative;
            display: inline-block;
            margin-bottom: 1.5rem;
        }
        
        .android-icon {
            font-size: 4rem;
            filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
            animation: androidFloat 4s ease-in-out infinite;
        }
        
        .android-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 120px;
            height: 120px;
            background: radial-gradient(circle, 
                rgba(255, 0, 150, 0.3) 0%, 
                rgba(0, 255, 255, 0.2) 30%, 
                rgba(150, 0, 255, 0.1) 60%, 
                transparent 100%);
            border-radius: 50%;
            animation: glowPulse 3s ease-in-out infinite;
            z-index: -1;
        }
        
        .android-title {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #ff0080, #00ffff, #8000ff);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 0.5rem;
            animation: rgbGradient 4s ease-in-out infinite;
            text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
        }
        
        .android-subtitle {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 400;
            margin-bottom: 1rem;
        }
        
        .android-features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2.5rem;
            position: relative;
            z-index: 2;
        }
        
        .android-feature {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 1.5rem 1rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }
        
        .android-feature::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;
        }
        
        .android-feature:hover {
            transform: translateY(-5px) scale(1.02);
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.2);
            box-shadow: 
                0 10px 30px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.15);
        }
        
        .android-feature:hover::before {
            left: 100%;
        }
        
        .android-feature .feature-icon {
            font-size: 2rem;
            margin-bottom: 0.75rem;
            display: block;
            filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
        }
        
        .android-feature span {
            font-size: 0.95rem;
            font-weight: 500;
            color: #ffffff;
            display: block;
        }
        
        .android-cta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
            margin-bottom: 1rem;
            position: relative;
            z-index: 2;
        }
        
        .cta-text {
            text-align: left;
            flex: 1;
        }
        
        .cta-text strong {
            font-size: 1.3rem;
            font-weight: 700;
            color: #ffffff;
            display: block;
            margin-bottom: 0.5rem;
            text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
        }
        
        .cta-text p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
            margin: 0;
        }
        
        .android-badge {
            position: relative;
            display: inline-block;
        }
        
        .android-badge img {
            width: 80px;
            height: 80px;
            filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
            animation: badgeFloat 3s ease-in-out infinite;
        }
        
        .badge-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100px;
            height: 100px;
            background: radial-gradient(circle, 
                rgba(0, 255, 255, 0.3) 0%, 
                rgba(255, 0, 150, 0.2) 50%, 
                transparent 100%);
            border-radius: 50%;
            animation: badgeGlow 4s ease-in-out infinite;
            z-index: -1;
        }
        
        .android-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }
        
        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: linear-gradient(45deg, #ff0080, #00ffff);
            border-radius: 50%;
            animation: particleFloat 6s linear infinite;
        }
        
        .particle:nth-child(1) {
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }
        
        .particle:nth-child(2) {
            top: 60%;
            left: 80%;
            animation-delay: 1s;
        }
        
        .particle:nth-child(3) {
            top: 80%;
            left: 20%;
            animation-delay: 2s;
        }
        
        .particle:nth-child(4) {
            top: 30%;
            left: 70%;
            animation-delay: 3s;
        }
        
        .particle:nth-child(5) {
            top: 70%;
            left: 40%;
            animation-delay: 4s;
        }
        
        /* Animations */
        @keyframes rgbShift {
            0%, 100% { 
                background: 
                    radial-gradient(circle at 20% 20%, rgba(255, 0, 150, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 80% 80%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 50% 50%, rgba(150, 0, 255, 0.05) 0%, transparent 70%);
            }
            33% { 
                background: 
                    radial-gradient(circle at 80% 20%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 20% 80%, rgba(150, 0, 255, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 50% 50%, rgba(255, 0, 150, 0.05) 0%, transparent 70%);
            }
            66% { 
                background: 
                    radial-gradient(circle at 50% 20%, rgba(150, 0, 255, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 50% 80%, rgba(255, 0, 150, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 50% 50%, rgba(0, 255, 255, 0.05) 0%, transparent 70%);
            }
        }
        
        @keyframes androidFloat {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-10px) rotate(2deg); }
        }
        
        @keyframes glowPulse {
            0%, 100% { 
                opacity: 0.5;
                transform: translate(-50%, -50%) scale(1);
            }
            50% { 
                opacity: 0.8;
                transform: translate(-50%, -50%) scale(1.1);
            }
        }
        
        @keyframes rgbGradient {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }
        
        @keyframes badgeFloat {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-5px) rotate(5deg); }
        }
        
        @keyframes badgeGlow {
            0%, 100% { 
                opacity: 0.3;
                transform: translate(-50%, -50%) scale(1);
            }
            50% { 
                opacity: 0.6;
                transform: translate(-50%, -50%) scale(1.2);
            }
        }
        
        @keyframes particleFloat {
            0% {
                transform: translateY(0px) translateX(0px);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100px) translateX(50px);
                opacity: 0;
            }
        }
        
        /* Mobile Responsive */
        @media (max-width: 768px) {
            .android-app-card {
                padding: 2rem 1.5rem;
                margin: 0 1rem;
            }
            
            .android-title {
                font-size: 2rem;
            }
            
            .android-features-grid {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
                gap: 1rem;
            }
            
            .android-feature {
                padding: 1rem 0.75rem;
            }
            
            .android-feature .feature-icon {
                font-size: 1.5rem;
            }
            
            .android-feature span {
                font-size: 0.85rem;
            }
            
            .android-cta {
                flex-direction: column;
                gap: 1.5rem;
                text-align: center;
            }
            
            .cta-text {
                text-align: center;
            }
            
            .cta-text strong {
                font-size: 1.1rem;
            }
            
            .android-badge img {
                width: 60px;
                height: 60px;
            }
        }
        
        @media (max-width: 480px) {
            .android-app-card {
                padding: 1.5rem 1rem;
            }
            
            .android-title {
                font-size: 1.8rem;
            }
            
            .android-subtitle {
                font-size: 1rem;
            }
            
            .android-features-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.75rem;
            }
            
            .android-feature {
                padding: 0.75rem 0.5rem;
            }
            
            .android-feature .feature-icon {
                font-size: 1.25rem;
            }
            
            .android-feature span {
                font-size: 0.8rem;
            }
            
            .cta-text strong {
                font-size: 1rem;
            }
            
            .cta-text p {
                font-size: 0.85rem;
            }
            
            .android-badge img {
                width: 50px;
                height: 50px;
            }
        }

        @media (max-width: 600px) {
            .card {
                padding: 1rem 0.5rem;
            }
            .upload-area {
                padding: 1rem 0.5rem;
                min-height: 180px;
                height: auto;
            }
        }
        @media (max-width: 400px) {
            .card {
                padding: 0.5rem 0.1rem;
            }
            .upload-area {
                padding: 0.5rem 0.1rem;
                min-height: 120px;
                height: auto;
            }
        }

        @media (max-width: 900px) {
            .macro-chart {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }
            .macro-item {
                padding: 1.5rem 0.7rem 1rem 0.7rem;
            }
            .macro-value {
                font-size: 1.5rem;
            }
            .macro-label {
                font-size: 1rem;
            }
        }
        @media (max-width: 600px) {
            .macro-chart {
                grid-template-columns: 1fr;
                gap: 0.7rem;
            }
            .macro-item {
                padding: 1.1rem 0.5rem 0.7rem 0.5rem;
            }
            .macro-value {
                font-size: 1.2rem;
            }
            .macro-label {
                font-size: 0.95rem;
            }
        }

        /* Contact Us Floating Button */
        .contact-us-fab {
            position: fixed;
            bottom: 32px;
            right: 32px;
            z-index: 9999;
            background: linear-gradient(120deg, #ff0080, #00ffff, #8000ff);
            color: #fff;
            font-weight: 700;
            font-size: 1.1rem;
            border: none;
            border-radius: 32px;
            box-shadow: 0 8px 32px rgba(79,70,229,0.18);
            padding: 1rem 2rem;
            cursor: pointer;
            transition: box-shadow 0.3s, transform 0.2s;
            display: flex;
            align-items: center;
            gap: 0.7rem;
            animation: btnGradientAnim 5s ease-in-out infinite alternate;
        }
        .contact-us-fab:hover {
            box-shadow: 0 12px 40px rgba(0,255,255,0.18);
            transform: translateY(-2px) scale(1.04);
        }

        /* Contact Us Modal */
        .contact-us-modal {
            display: none;
            position: fixed;
            z-index: 10000;
            left: 0; top: 0; right: 0; bottom: 0;
            background: rgba(20, 20, 35, 0.75);
            justify-content: center;
            align-items: center;
            transition: background 0.3s;
        }
        .contact-us-modal.show {
            display: flex;
        }
        .contact-modal-card {
            background: linear-gradient(135deg, rgba(20, 20, 35, 0.98) 0%, rgba(40, 20, 60, 0.98) 50%, rgba(20, 35, 50, 0.98) 100%);
            border-radius: 28px;
            box-shadow: 0 16px 48px 0 rgba(0,0,0,0.25), 0 1.5px 8px 0 rgba(0,0,0,0.10);
            border: 1.5px solid rgba(255,255,255,0.13);
            padding: 2.5rem 2rem 2rem 2rem;
            max-width: 400px;
            width: 95vw;
            position: relative;
            overflow: hidden;
            animation: fadeIn 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        .contact-modal-card::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 28px;
            background: linear-gradient(120deg, rgba(255,0,128,0.10), rgba(0,255,255,0.08), rgba(128,0,255,0.08));
            z-index: 0;
            pointer-events: none;
            animation: cardBgAnim 8s ease-in-out infinite alternate;
        }
        .contact-modal-header {
            text-align: center;
            margin-bottom: 1.2rem;
            position: relative;
            z-index: 2;
        }
        .contact-modal-icon {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
            animation: floating 4s ease-in-out infinite, iconGlow 3s ease-in-out infinite alternate;
            background: linear-gradient(135deg, #ff0080, #00ffff, #8000ff);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            filter: drop-shadow(0 0 12px #00ffff88);
        }
        .contact-modal-title {
            font-size: 1.3rem;
            font-weight: 800;
            background: linear-gradient(120deg, #ff0080, #00ffff, #8000ff);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: rgbGradient 4s ease-in-out infinite;
            margin-bottom: 0.3rem;
        }
        .contact-modal-subtitle {
            font-size: 1rem;
            color: rgba(255,255,255,0.85);
            font-weight: 500;
            margin-bottom: 0.5rem;
        }
        .contact-modal-desc {
            color: rgba(255,255,255,0.85);
            font-size: 0.98rem;
            margin-bottom: 1.2rem;
            text-align: center;
            z-index: 2;
            position: relative;
        }
        .contact-modal-form {
            display: flex;
                flex-direction: column;
            gap: 0.8rem;
            z-index: 2;
            position: relative;
        }
        .contact-modal-form input,
        .contact-modal-form textarea {
            background: rgba(255,255,255,0.08);
            border: 1.5px solid rgba(255,255,255,0.18);
            border-radius: 16px;
            color: #fff;
            font-size: 1rem;
            padding: 0.8rem 1rem;
            outline: none;
            transition: border 0.2s, box-shadow 0.2s;
            font-family: inherit;
            resize: none;
        }
        .contact-modal-form input:focus,
        .contact-modal-form textarea:focus {
            border: 1.5px solid #00ffff;
            box-shadow: 0 0 0 2px #00ffff33;
        }
        .contact-send-btn {
            width: 100%;
            margin-top: 0.2rem;
            margin-bottom: 0.2rem;
            font-size: 1.08rem;
            border-radius: 24px;
            font-weight: 700;
            background: linear-gradient(120deg, #7f00ff, #e100ff, #00c3ff);
            background-size: 200% 200%;
            animation: btnGradientAnim 5s ease-in-out infinite alternate;
        }
        .contact-whatsapp-btn {
            width: 100%;
            font-size: 1.08rem;
            border-radius: 24px;
            font-weight: 700;
            margin-top: 0.1rem;
            background: #25d366;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            transition: background 0.2s;
        }
        .contact-whatsapp-btn:hover {
            background: #1ebc59;
        }
        .contact-modal-close {
            position: absolute;
            top: 18px;
            right: 18px;
            background: rgba(255,255,255,0.10);
            border: none;
            color: #fff;
            font-size: 1.5rem;
            border-radius: 50%;
            width: 36px;
            height: 36px;
            cursor: pointer;
            z-index: 10;
            transition: background 0.2s, transform 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .contact-modal-close:hover {
            background: #ff0080;
            color: #fff;
            transform: scale(1.1) rotate(90deg);
        }
        @media (max-width: 600px) {
            .contact-modal-card {
                padding: 1.2rem 0.5rem 1rem 0.5rem;
                max-width: 98vw;
            }
            .contact-us-fab {
                bottom: 16px;
                right: 16px;
                padding: 0.7rem 1.2rem;
                font-size: 1rem;
            }
        }
        @media (max-width: 400px) {
            .contact-modal-card {
                padding: 0.7rem 0.1rem 0.5rem 0.1rem;
            }
            .contact-us-fab {
                bottom: 8px;
                right: 8px;
                padding: 0.5rem 0.7rem;
                font-size: 0.95rem;
            }
        }

        /* Header Navigation Links */
        .nav-links {
            display: flex;
            gap: 1.5rem;
            align-items: center;
        }
        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            padding: 0.5rem 1rem;
            border-radius: 18px;
            transition: background 0.2s, color 0.2s;
            position: relative;
        }
        .nav-links a.active,
        .nav-links a:hover {
            background: linear-gradient(120deg, #ff0080, #00ffff, #8000ff);
            color: #fff;
            box-shadow: 0 2px 12px rgba(128,0,255,0.10);
        }

        /* Hamburger for mobile */
        .nav-hamburger {
            display: none;
                flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 38px;
            height: 38px;
            cursor: pointer;
            border-radius: 50%;
            background: rgba(255,255,255,0.08);
            margin-left: 1rem;
            z-index: 1001;
            transition: background 0.2s;
        }
        .nav-hamburger span {
            display: block;
            width: 22px;
            height: 3px;
            background: #fff;
            margin: 3px 0;
            border-radius: 2px;
            transition: all 0.3s;
        }

        @media (max-width: 900px) {
            .nav-links {
                gap: 1rem;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
            }
            .nav-links {
                position: fixed;
                top: 0;
                right: 0;
                height: 100vh;
                width: 220px;
                background: linear-gradient(135deg, rgba(20, 20, 35, 0.98) 0%, rgba(40, 20, 60, 0.98) 50%, rgba(20, 35, 50, 0.98) 100%);
                box-shadow: -8px 0 32px rgba(0,0,0,0.18);
                flex-direction: column;
                align-items: flex-start;
                gap: 0.5rem;
                padding: 4.5rem 1.2rem 1.2rem 1.2rem;
                transform: translateX(100%);
                transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
                z-index: 1000;
            }
            .nav-links.show {
                transform: translateX(0);
            }
            .nav-links a {
                width: 100%;
                font-size: 1.1rem;
                padding: 0.9rem 0.7rem;
                border-radius: 14px;
                margin-bottom: 0.2rem;
            }
            .nav-hamburger {
                display: flex;
            }
        }
        @media (max-width: 480px) {
            .nav-links {
                width: 100vw;
                padding: 4.5rem 0.5rem 1rem 0.5rem;
            }
            .nav-links a {
                font-size: 1rem;
                padding: 0.8rem 0.5rem;
            }
        }

        /* HERO SECTION: Use Android App Card Color Scheme */
        .hero-section {
          position: relative;
          width: 100%;
          min-height: 420px;
          max-height: 650px;
          overflow: hidden;
          margin-bottom: 2.5rem;
          display: flex;
          align-items: center;
          justify-content: center;
          z-index: 2;
          border-radius: 30px;
          margin: 0 1rem 2.5rem 1rem;
          padding: 2.5rem 1.5rem 2.5rem 1.5rem;
          background: linear-gradient(120deg, #181c2f 0%, #2a2250 50%, #1a1a2e 100%);
        }
        .hero-wave, .hero-wave svg, .hero-wave path { display: none !important; }
        .hero-bg-3d {
          position: absolute;
          top: 0; left: 0; right: 0; bottom: 0;
          z-index: 0;
          background: linear-gradient(120deg, #181c2f 0%, #2a2250 50%, #1a1a2e 100%, #00eaff 120%);
          background-size: 200% 200%;
          animation: heroAuroraGradient 12s ease-in-out infinite alternate;
          pointer-events: none;
          border-radius: 30px;
          box-shadow: 0 0 80px 10px #00eaff33, 0 0 120px 30px #ff00c833;
          overflow: hidden;
        }
        @keyframes heroAuroraGradient {
          0% { background-position: 0% 50%; }
          50% { background-position: 100% 50%; }
          100% { background-position: 0% 50%; }
        }
        .hero-bg-3d::after {
          content: '';
          position: absolute;
          left: -20%;
          top: 10%;
          width: 140%;
          height: 80%;
          background: radial-gradient(ellipse at 60% 40%, rgba(0,234,255,0.18) 0%, rgba(0,191,255,0.10) 60%, transparent 100%);
          opacity: 0.7;
          filter: blur(32px);
          animation: heroAuroraSweep 8s ease-in-out infinite alternate;
          pointer-events: none;
          z-index: 1;
        }
        @keyframes heroAuroraSweep {
          0% { left: -20%; top: 10%; opacity: 0.7; }
          50% { left: 10%; top: 20%; opacity: 1; }
          100% { left: -20%; top: 10%; opacity: 0.7; }
        }
        .hero-img {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          object-fit: cover;
          z-index: 1;
          border-radius: 30px;
          opacity: 0.60;
          filter: blur(1px) brightness(0.85);
        }
        .hero-content.hero-3d-card {
          position: relative;
          color: #fff;
          text-align: center;
          background: rgba(24, 28, 47, 0.82);
          border-radius: 24px;
          box-shadow: 0 25px 50px 0 rgba(0,0,0,0.30), 0 1.5px 8px 0 rgba(0,0,0,0.10);
          padding: 3.5rem 2.5rem 2.5rem 2.5rem;
          max-width: 90vw;
          min-width: 280px;
          z-index: 2;
          overflow: hidden;
          border: 2px solid rgba(255,255,255,0.10);
          background-clip: padding-box;
          backdrop-filter: blur(18px);
          transform: perspective(800px) translateZ(20px) scale(1.02);
        }
        .hero-title-3d {
          font-size: clamp(2.1rem, 5vw, 3.2rem);
          font-weight: 900;
          background: linear-gradient(90deg, #00eaff 0%, #00bfff 50%, #00eaff 100%);
          background-size: 200% 200%;
          -webkit-background-clip: text;
          background-clip: text;
          -webkit-text-fill-color: transparent;
          animation: heroTitleGradient 6s ease-in-out infinite alternate;
          margin-bottom: 1.1rem;
          text-shadow: 0 2px 24px #000a, 0 0 2px #00eaffcc;
          letter-spacing: -1px;
        }
        @keyframes heroTitleGradient {
          0% { background-position: 0% 50%; }
          100% { background-position: 100% 50%; }
        }
        .hero-content.hero-3d-card .subtitle {
          font-size: clamp(1.1rem, 2vw, 1.3rem);
          margin-bottom: 1.5rem;
          opacity: 0.97;
          line-height: 1.5;
          color: #f3f6fa;
          text-shadow: 0 2px 12px #000a;
        }
        .hero-content.hero-3d-card .btn {
          font-size: clamp(1rem, 2vw, 1.1rem);
          padding: 0.9rem 2.2rem;
          margin-bottom: 1rem;
          font-weight: 600;
          letter-spacing: 0.01em;
          box-shadow: 0 2px 12px #00eaff33;
        }
        .hero-caption {
          margin-top: 1.2rem;
          color: #e0e0e0;
          font-size: clamp(0.9rem, 1.5vw, 1.08rem);
          opacity: 0.85;
          text-shadow: 0 1px 8px #000a;
        }

        /* TESTIMONIALS SECTION MODERNIZED */
        .testimonials-section.card {
          background: linear-gradient(135deg, rgba(40, 20, 60, 0.85) 0%, rgba(20, 35, 50, 0.85) 100%);
          border-radius: 30px;
          box-shadow: 0 10px 30px rgba(0,0,0,0.18), 0 1.5px 8px 0 rgba(0,0,0,0.10);
          padding: 3rem 2rem 2.5rem 2rem;
          margin: 3rem 0;
          position: relative;
          overflow: visible;
          border: 2px solid rgba(255,255,255,0.10);
          backdrop-filter: blur(12px);
        }
        .testimonials-grid {
          display: flex;
          gap: 2.5rem;
          flex-wrap: wrap;
          justify-content: center;
          position: relative;
          z-index: 2;
        }
        .testimonial {
          background: rgba(255,255,255,0.07);
          border-radius: 20px;
          box-shadow: 0 4px 18px rgba(0,0,0,0.10);
          padding: 2rem 1.5rem 1.5rem 1.5rem;
          max-width: 320px;
          min-width: 220px;
          display: flex;
          flex-direction: column;
          align-items: flex-start;
          position: relative;
          border: 1.5px solid rgba(255,255,255,0.13);
          transition: transform 0.3s, box-shadow 0.3s;
          overflow: hidden;
        }
        .testimonial:hover {
          transform: translateY(-8px) scale(1.03);
          box-shadow: 0 8px 32px rgba(0,0,0,0.18);
          border-color: #ff0080;
        }
        .testimonial-img {
          position: relative;
          z-index: 1;
        }
        .testimonial-text {
          color: #fff;
          font-size: 1.08rem;
          margin-bottom: 0.7rem;
          font-style: italic;
          line-height: 1.6;
          position: relative;
          z-index: 2;
        }
        .testimonial-text::before {
          content: '"';
          font-size: 2.5rem;
          color: #ff0080;
          position: absolute;
          left: -1.2rem;
          top: -1.2rem;
          opacity: 0.7;
          z-index: 1;
        }
        .testimonial-name {
          color: #00ffff;
          font-weight: 700;
          font-size: 1.02rem;
          margin-top: auto;
          letter-spacing: 0.5px;
        }

        .testimonials-subtitle {
          text-align: center;
          color: #fff;
          font-size: 1.15rem;
          margin-bottom: 2.2rem;
          opacity: 0.85;
          letter-spacing: 0.01em;
          font-weight: 400;
        }
        .testimonial-img-glow {
          display: flex;
          align-items: center;
          justify-content: flex-start;
          margin-bottom: 0.7rem;
          position: relative;
        }
        .testimonial-img-glow::before {
          content: '';
          position: absolute;
          left: 50%;
          top: 50%;
          transform: translate(-50%, -50%);
          width: 70px;
          height: 70px;
          border-radius: 50%;
          background: radial-gradient(circle, #ff0080 0%, #00ffff 60%, #8000ff 100%);
          filter: blur(12px) brightness(1.2);
          opacity: 0.55;
          z-index: 0;
          animation: testimonialGlow 5s ease-in-out infinite alternate;
        }
        @keyframes testimonialGlow {
          0% { filter: blur(12px) brightness(1.2); opacity: 0.55; }
          50% { filter: blur(18px) brightness(1.4); opacity: 0.8; }
          100% { filter: blur(12px) brightness(1.2); opacity: 0.55; }
        }
        .testimonial-img {
          width: 54px;
          height: 54px;
          border-radius: 50%;
          object-fit: cover;
          box-shadow: 0 2px 8px rgba(0,0,0,0.10);
          border: 2.5px solid #fff;
          position: relative;
          z-index: 1;
        }
        @media (max-width: 900px) {
          .testimonials-grid {
            gap: 1.2rem;
          }
          .testimonial {
            max-width: 100%;
            min-width: 180px;
            padding: 1.2rem 0.7rem 1rem 0.7rem;
          }
        }
        @media (max-width: 600px) {
          .testimonials-grid {
            flex-direction: column;
            gap: 1.2rem;
            align-items: center;
          }
          .testimonial {
            width: 100%;
            max-width: 98vw;
            min-width: 0;
            padding: 1rem 0.3rem 0.7rem 0.3rem;
          }
          .testimonial-img {
            width: 44px;
            height: 44px;
            border-radius: 50%;
          }
        }

        .hero-wave {
          position: absolute;
          left: 0;
          right: 0;
          bottom: 0;
          width: 100%;
          height: 90px;
          z-index: 2;
          pointer-events: none;
          overflow: hidden;
        }
        .hero-wave svg {
          width: 100%;
          height: 100%;
          display: block;
        }
        @keyframes heroWaveMove {
          0% { transform: translateX(0); }
          100% { transform: translateX(-120px); }
        }
        .hero-wave path {
          animation: heroWaveFlash 3.5s ease-in-out infinite;
        }
        @keyframes heroWaveFlash {
          0%, 100% {
            opacity: 0.85;
            filter: brightness(1.05);
          }
          50% {
            opacity: 1;
            filter: brightness(1.25);
          }
        }

        .hero-mouse-flash {
          position: absolute;
          top: 0; left: 0; right: 0; bottom: 0;
          pointer-events: none;
          z-index: 3;
        }
        .hero-mouse-flash-effect {
          position: absolute;
          width: 180px;
          height: 180px;
          border-radius: 50%;
          background: radial-gradient(circle, rgba(0,234,255,0.18) 0%, rgba(0,191,255,0.10) 60%, transparent 100%);
          opacity: 0.85;
          filter: blur(18px);
          pointer-events: none;
          transition: opacity 0.25s, transform 0.12s;
          z-index: 3;
          animation: heroFlashPulse 1.2s ease-in-out infinite alternate;
        }
        @keyframes heroFlashPulse {
          0% { opacity: 0.7; }
          100% { opacity: 1; }
        }
        .hero-floating-shapes {
          position: absolute;
          top: 0; left: 0; width: 100%; height: 100%;
          pointer-events: none;
          z-index: 2;
        }
        .hero-shape {
          position: absolute;
          will-change: transform, opacity;
          filter: blur(0.5px);
          animation: heroShapeFloat 7s ease-in-out infinite alternate;
        }
        .hero-shape:nth-child(1) {
          left: 12%; top: 18%;
          animation-delay: 0s;
        }
        .hero-shape:nth-child(2) {
          left: 78%; top: 22%;
          animation-delay: 1.2s;
        }
        .hero-shape:nth-child(3) {
          left: 55%; top: 65%;
          animation-delay: 2.1s;
        }
        @keyframes heroShapeFloat {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        /* ===== CONTACT PAGE STYLES ===== */
        .contact-methods-section {
            margin-bottom: 4rem;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #ff0080, #00ffff);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 3rem;
        }

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

        .contact-method-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;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }

        .contact-method-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;
        }

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

        .contact-method-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.2);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .contact-method-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            display: block;
        }

        .contact-method-card h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #fff;
        }

        .contact-method-card p {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 1.5rem;
        }

        .contact-details {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 1rem;
            margin-bottom: 1.5rem;
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .contact-method-btn {
            width: 100%;
            margin-top: auto;
        }

        .contact-form-section {
            margin-bottom: 4rem;
        }

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

        .contact-form-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #ff0080, #00ffff);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .contact-form {
            max-width: 800px;
            margin: 0 auto;
        }

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

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

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

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            color: #fff;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #00ffff;
            background: rgba(255, 255, 255, 0.1);
            box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
        }

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

        .checkbox-group {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .checkbox-label {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            cursor: pointer;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
        }

        .submit-btn {
            width: 100%;
            padding: 1.2rem;
            font-size: 1.1rem;
            font-weight: 600;
            position: relative;
            overflow: hidden;
        }

        .offices-section {
            margin-bottom: 4rem;
        }

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

        .office-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;
            transition: all 0.4s ease;
        }

        .office-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .office-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .office-icon {
            font-size: 2rem;
        }

        .office-header h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: #fff;
        }

        .office-details {
            margin-bottom: 1.5rem;
        }

        .office-details p {
            margin-bottom: 0.5rem;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
        }

        .office-btn {
            width: 100%;
        }

        /* ===== ABOUT PAGE STYLES ===== */
        .story-section {
            margin-bottom: 4rem;
        }

        .story-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .story-intro {
            font-size: 1.2rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 3rem;
            text-align: center;
        }

        .story-timeline {
            position: relative;
        }

        .story-timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(180deg, #ff0080, #00ffff);
            transform: translateX(-50%);
        }

        .timeline-item {
            display: flex;
            align-items: center;
            margin-bottom: 3rem;
            position: relative;
        }

        .timeline-item:nth-child(even) {
            flex-direction: row-reverse;
        }

        .timeline-marker {
            background: linear-gradient(135deg, #ff0080, #00ffff);
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
            position: relative;
            z-index: 2;
            box-shadow: 0 0 20px rgba(255, 0, 128, 0.5);
        }

        .timeline-content {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 2rem;
            margin: 0 2rem;
            flex: 1;
            transition: all 0.4s ease;
        }

        .timeline-content:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .timeline-content h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #fff;
        }

        .timeline-content p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
        }

        .mission-values-section {
            margin-bottom: 4rem;
        }

        .mission-card {
            text-align: center;
            margin-bottom: 3rem;
        }

        .mission-statement {
            font-size: 1.3rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
        }

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

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

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #ff0080, #00ffff);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
        }

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

        .value-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;
            text-align: center;
            transition: all 0.4s ease;
        }

        .value-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .value-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            display: block;
        }

        .value-card h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #fff;
        }

        .value-card p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
        }

        .team-section {
            margin-bottom: 4rem;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .team-member-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;
            text-align: center;
            transition: all 0.4s ease;
        }

        .team-member-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .member-avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 1.5rem;
            border: 3px solid rgba(255, 255, 255, 0.2);
        }

        .member-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .team-member-card h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: #fff;
        }

        .member-title {
            color: #00ffff;
            font-weight: 500;
            margin-bottom: 1rem;
        }

        .member-bio {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .member-expertise {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            justify-content: center;
        }

        .expertise-tag {
            background: rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.8);
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            font-size: 0.8rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        /* ===== PRIVACY PAGE STYLES ===== */
        .privacy-overview {
            margin-bottom: 4rem;
        }

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

        .highlight-item {
            text-align: center;
            padding: 1.5rem;
        }

        .highlight-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            display: block;
        }

        .highlight-item h3 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #fff;
        }

        .highlight-item p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
        }

        .data-collection-section,
        .data-usage-section,
        .data-sharing-section,
        .security-section,
        .user-rights-section,
        .cookies-section {
            margin-bottom: 4rem;
        }

        .collection-grid,
        .usage-grid,
        .security-grid,
        .rights-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .collection-category,
        .usage-card,
        .security-item,
        .right-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 2rem;
            transition: all 0.4s ease;
        }

        .collection-category:hover,
        .usage-card:hover,
        .security-item:hover,
        .right-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .collection-category h3,
        .usage-card h3,
        .security-item h3,
        .right-card h3 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #fff;
        }

        .collection-category ul,
        .usage-card p,
        .security-item p,
        .right-card p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
        }

        .collection-category ul {
            list-style: none;
            padding: 0;
        }

        .collection-category li {
            margin-bottom: 0.5rem;
            padding-left: 1rem;
            position: relative;
        }

        .collection-category li::before {
            content: '•';
            color: #00ffff;
            position: absolute;
            left: 0;
        }

        .usage-icon,
        .security-icon,
        .right-icon {
            font-size: 2rem;
            margin-bottom: 1rem;
            display: block;
        }

        .sharing-policy {
            margin-top: 2rem;
        }

        .sharing-policy h3 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #fff;
        }

        .sharing-policy ul {
            list-style: none;
            padding: 0;
            margin-bottom: 2rem;
        }

        .sharing-policy li {
            margin-bottom: 0.5rem;
            padding-left: 1rem;
            position: relative;
            color: rgba(255, 255, 255, 0.8);
        }

        .sharing-policy li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.5rem;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #00ffff;
        }

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

        .cookie-type {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 2rem;
        }

        .cookie-type h3 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #fff;
        }

        .cookie-type p {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 1rem;
        }

        .cookie-type ul {
            list-style: none;
            padding: 0;
        }

        .cookie-type li {
            margin-bottom: 0.3rem;
            padding-left: 1rem;
            position: relative;
            color: rgba(255, 255, 255, 0.7);
        }

        .cookie-type li::before {
            content: '→';
            color: #00ffff;
            position: absolute;
            left: 0;
        }

        .cookie-controls {
            margin-top: 2rem;
            text-align: center;
        }

        .rights-contact {
            margin-top: 2rem;
            text-align: center;
        }

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

        .contact-method {
            text-align: center;
            padding: 1.5rem;
        }

        .contact-method h3 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #fff;
        }

        .contact-method p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
        }

        /* ===== DISCLAIMER PAGE STYLES ===== */
        .disclaimer-section {
            margin-bottom: 2rem;
        }

        .disclaimer-section h2 {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #fff;
            background: linear-gradient(135deg, #ff0080, #00ffff);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .disclaimer-section p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .disclaimer-section ul {
            list-style: none;
            padding: 0;
        }

        .disclaimer-section li {
            margin-bottom: 0.8rem;
            padding-left: 1.5rem;
            position: relative;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
        }

        .disclaimer-section li::before {
            content: '⚠️';
            position: absolute;
            left: 0;
            top: 0;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .form-row {
                grid-template-columns: 1fr;
            }

            .story-timeline::before {
                left: 30px;
            }

            .timeline-item {
                flex-direction: column;
                align-items: flex-start;
                margin-left: 30px;
            }

            .timeline-item:nth-child(even) {
                flex-direction: column;
                align-items: flex-start;
            }

            .timeline-marker {
                margin-bottom: 1rem;
            }

            .timeline-content {
                margin: 0;
                width: 100%;
            }

            .contact-methods-grid,
            .offices-grid,
            .values-grid,
            .team-grid,
            .privacy-highlights,
            .collection-grid,
            .usage-grid,
            .security-grid,
            .rights-grid,
            .cookies-grid,
            .contact-methods {
                grid-template-columns: 1fr;
            }

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

            .mission-stats {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 480px) {
            .section-title {
                font-size: 1.8rem;
            }

            .contact-method-card,
            .office-card,
            .value-card,
            .team-member-card,
            .collection-category,
            .usage-card,
            .security-item,
            .right-card,
            .cookie-type {
                padding: 1.5rem;
            }

            .mission-stats {
                grid-template-columns: 1fr;
            }

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

        /* ===== MISSING STYLES ===== */
        .contact-header-btn {
            background: linear-gradient(135deg, #ff0080, #00ffff);
            border: none;
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 25px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            text-decoration: none;
        }

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

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

        .contact-header-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(255, 0, 128, 0.4);
        }

        /* ===== TERMS PAGE STYLES ===== */
        .toc-section {
            margin-bottom: 3rem;
        }

        .toc-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;
        }

        .toc-card h2 {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: #fff;
            background: linear-gradient(135deg, #ff0080, #00ffff);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .toc-list {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .toc-item {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            padding: 0.75rem 1rem;
            border-radius: 10px;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }

        .toc-item:hover,
        .toc-item.active {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.2);
            color: #fff;
            transform: translateX(5px);
        }

        .terms-content {
            margin-bottom: 3rem;
        }

        .terms-section {
            margin-bottom: 3rem;
        }

        .terms-section h2 {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: #fff;
            background: linear-gradient(135deg, #ff0080, #00ffff);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .terms-section p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .terms-section ul {
            list-style: none;
            padding: 0;
            margin-bottom: 1rem;
        }

        .terms-section li {
            margin-bottom: 0.8rem;
            padding-left: 1.5rem;
            position: relative;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
        }

        .terms-section li::before {
            content: '•';
            color: #00ffff;
            position: absolute;
            left: 0;
            top: 0;
        }

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

        .definition-item {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 1.5rem;
            transition: all 0.4s ease;
        }

        .definition-item:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .definition-item h3 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #00ffff;
        }

        .definition-item p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
        }

        .services-list {
            list-style: none;
            padding: 0;
            margin: 1.5rem 0;
        }

        .services-list li {
            margin-bottom: 0.8rem;
            padding-left: 1.5rem;
            position: relative;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
        }

        .services-list li::before {
            content: '✓';
            color: #00ffff;
            position: absolute;
            left: 0;
            top: 0;
            font-weight: bold;
        }

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

        .usage-category {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 1.5rem;
        }

        .usage-category h3 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #fff;
        }

        .usage-category ul {
            list-style: none;
            padding: 0;
        }

        .usage-category li {
            margin-bottom: 0.5rem;
            padding-left: 1rem;
            position: relative;
            color: rgba(255, 255, 255, 0.8);
        }

        .usage-category li::before {
            content: '→';
            color: #00ffff;
            position: absolute;
            left: 0;
        }

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

        .ip-item {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 1.5rem;
        }

        .ip-item h3 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #fff;
        }

        .ip-item p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
        }

        .last-updated-section {
            text-align: center;
            margin-top: 3rem;
        }

        .last-updated-section h2 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #fff;
        }

        .last-updated-section p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
        }

        /* ===== DIET PLANNER PAGE STYLES ===== */
        .diet-planner-hero {
            text-align: center;
            margin-bottom: 4rem;
        }

        .diet-planner-hero h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #ff0080, #00ffff);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .diet-planner-hero p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 2rem;
        }

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

        .planner-feature {
            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;
            text-align: center;
            transition: all 0.4s ease;
        }

        .planner-feature:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .planner-feature-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            display: block;
        }

        .planner-feature h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #fff;
        }

        .planner-feature p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
        }

        .coming-soon-banner {
            background: linear-gradient(135deg, #ff0080, #00ffff);
            border-radius: 20px;
            padding: 3rem;
            text-align: center;
            margin: 4rem 0;
            position: relative;
            overflow: hidden;
        }

        .coming-soon-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
            animation: float 20s linear infinite;
        }

        .coming-soon-banner h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: white;
            position: relative;
            z-index: 2;
        }

        .coming-soon-banner p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
            position: relative;
            z-index: 2;
        }

        .notify-btn {
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: white;
            padding: 1rem 2rem;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
        }

        .notify-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-2px);
        }

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

        /* ===== RESPONSIVE FIXES ===== */
        @media (max-width: 768px) {
            .contact-header-btn {
                padding: 0.5rem 1rem;
                font-size: 0.8rem;
            }

            .toc-list {
                gap: 0.3rem;
            }

            .toc-item {
                padding: 0.5rem 0.75rem;
                font-size: 0.9rem;
            }

            .definitions-grid,
            .usage-grid,
            .ip-details,
            .planner-features {
                grid-template-columns: 1fr;
            }

            .diet-planner-hero h1 {
                font-size: 2rem;
            }

            .coming-soon-banner {
                padding: 2rem;
            }

            .coming-soon-banner h2 {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 480px) {
            .contact-header-btn {
                padding: 0.4rem 0.8rem;
                font-size: 0.75rem;
            }

            .terms-section h2,
            .disclaimer-section h2 {
                font-size: 1.5rem;
            }

            .definition-item,
            .usage-category,
            .ip-item,
            .planner-feature {
                padding: 1rem;
            }

            .coming-soon-banner {
                padding: 1.5rem;
            }

            .coming-soon-banner h2 {
                font-size: 1.5rem;
            }

            .coming-soon-banner p {
                font-size: 1rem;
            }
        }

        /* ===== DIET PLANNER ADDITIONAL STYLES ===== */
        .tech-stack-section {
            margin-bottom: 4rem;
        }

        .tech-stack-section h2 {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #ff0080, #00ffff);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .tech-stack-section p {
            text-align: center;
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 3rem;
        }

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

        .tech-item {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            transition: all 0.4s ease;
        }

        .tech-item:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .tech-item h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #00ffff;
        }

        .tech-item p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
        }

        .success-stories {
            margin-bottom: 4rem;
        }

        .success-stories h2 {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #ff0080, #00ffff);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .success-stories p {
            text-align: center;
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 3rem;
        }

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

        .story-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;
            text-align: center;
            transition: all 0.4s ease;
        }

        .story-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .story-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 1.5rem;
            border: 3px solid rgba(255, 255, 255, 0.2);
        }

        .story-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .story-card h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #fff;
        }

        .story-card p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            margin-bottom: 1.5rem;
            font-style: italic;
        }

        .story-stats {
            display: flex;
            justify-content: center;
            gap: 1rem;
        }

        .story-stats span {
            background: rgba(255, 255, 255, 0.1);
            color: #00ffff;
            padding: 0.5rem 1rem;
            border-radius: 15px;
            font-size: 0.9rem;
            font-weight: 500;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .cta-section {
            text-align: center;
            margin-bottom: 4rem;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #ff0080, #00ffff);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .cta-section p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 2rem;
            line-height: 1.6;
        }

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

        .cta-buttons .btn {
            min-width: 150px;
        }

        .advanced-features {
            margin-bottom: 4rem;
        }

        .advanced-features .section-title {
            margin-bottom: 3rem;
        }

        /* ===== RESPONSIVE FIXES FOR DIET PLANNER ===== */
        @media (max-width: 768px) {
            .tech-grid,
            .stories-grid {
                grid-template-columns: 1fr;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .cta-buttons .btn {
                width: 100%;
                max-width: 300px;
            }

            .story-stats {
                flex-direction: column;
                align-items: center;
            }

            .story-stats span {
                width: 100%;
                max-width: 150px;
            }
        }

        @media (max-width: 480px) {
            .tech-item,
            .story-card {
                padding: 1.5rem;
            }

            .cta-section h2 {
                font-size: 2rem;
            }

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

            .success-stories h2,
            .tech-stack-section h2 {
                font-size: 2rem;
            }
        }

        /* ===== ENHANCED ABOUT PAGE STYLES ===== */
        .achievements-section {
            margin-bottom: 4rem;
        }

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

        .achievement-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 2.5rem;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }

        .achievement-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;
        }

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

        .achievement-card:hover {
            transform: translateY(-15px) scale(1.02);
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
            border-color: rgba(255, 255, 255, 0.2);
            box-shadow: 
                0 25px 50px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.1);
        }

        .achievement-icon {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            display: block;
            filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
            animation: achievementIconFloat 3s ease-in-out infinite;
        }

        @keyframes achievementIconFloat {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-10px) rotate(5deg); }
        }

        .achievement-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #fff;
            background: linear-gradient(135deg, #ff0080, #00ffff);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .achievement-card p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            font-size: 1rem;
        }

        .technology-section {
            margin-bottom: 4rem;
        }

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

        .tech-item {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 2.5rem;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }

        .tech-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 128, 0.1));
            opacity: 0;
            transition: opacity 0.4s ease;
            border-radius: 20px;
        }

        .tech-item:hover::after {
            opacity: 1;
        }

        .tech-item:hover {
            transform: translateY(-10px) scale(1.02);
            border-color: rgba(0, 255, 255, 0.3);
            box-shadow: 
                0 20px 40px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(0, 255, 255, 0.2);
        }

        .tech-icon {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            display: block;
            position: relative;
            z-index: 2;
            animation: techIconPulse 2s ease-in-out infinite;
        }

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

        .tech-item h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #00ffff;
            position: relative;
            z-index: 2;
        }

        .tech-item p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            position: relative;
            z-index: 2;
        }

        /* Enhanced Mission Section */
        .mission-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 25px;
            padding: 3rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            margin-bottom: 3rem;
        }

        .mission-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg, transparent, rgba(255, 0, 128, 0.1), transparent, rgba(0, 255, 255, 0.1), transparent);
            animation: missionRotate 10s linear infinite;
            z-index: 0;
        }

        @keyframes missionRotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .mission-card h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #ff0080, #00ffff);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
            z-index: 2;
        }

        .mission-statement {
            font-size: 1.3rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2.5rem;
            position: relative;
            z-index: 2;
            font-weight: 400;
        }

        .mission-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
            position: relative;
            z-index: 2;
        }

        .stat-item {
            text-align: center;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .stat-item:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .stat-number {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #ff0080, #00ffff);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 0.5rem;
            display: block;
        }

        .stat-label {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.95rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Enhanced Values Grid */
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .value-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 2.5rem;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }

        .value-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 0, 128, 0.1), rgba(0, 255, 255, 0.1));
            opacity: 0;
            transition: opacity 0.4s ease;
            border-radius: 20px;
        }

        .value-card:hover::before {
            opacity: 1;
        }

        .value-card:hover {
            transform: translateY(-12px) scale(1.03);
            border-color: rgba(255, 255, 255, 0.2);
            box-shadow: 
                0 25px 50px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.1);
        }

        .value-icon {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            display: block;
            position: relative;
            z-index: 2;
            animation: valueIconFloat 4s ease-in-out infinite;
        }

        @keyframes valueIconFloat {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-8px) rotate(3deg); }
        }

        .value-card h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #fff;
            position: relative;
            z-index: 2;
        }

        .value-card p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            position: relative;
            z-index: 2;
        }

        /* Animation Classes */
        .animate-in {
            animation: fadeInUp 0.8s ease-out forwards;
        }

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

        /* Enhanced CTA Section */
        .cta-section {
            background: linear-gradient(135deg, rgba(255, 0, 128, 0.1), rgba(0, 255, 255, 0.1));
            border: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            margin-bottom: 4rem;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #ff0080, #00ffff);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .cta-section p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 2rem;
            line-height: 1.6;
        }

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

        .cta-buttons .btn {
            min-width: 180px;
            padding: 1rem 2rem;
            font-size: 1.1rem;
            font-weight: 600;
        }

        /* ===== RESPONSIVE FIXES FOR ENHANCED ABOUT PAGE ===== */
        @media (max-width: 768px) {
            .achievements-grid,
            .tech-stack,
            .values-grid {
                grid-template-columns: 1fr;
            }

            .mission-stats {
                grid-template-columns: repeat(2, 1fr);
            }

            .achievement-card,
            .tech-item,
            .value-card {
                padding: 2rem;
            }

            .mission-card {
                padding: 2rem;
            }

            .achievement-icon,
            .tech-icon,
            .value-icon {
                font-size: 3rem;
            }

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

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .cta-buttons .btn {
                width: 100%;
                max-width: 300px;
            }
        }

        @media (max-width: 480px) {
            .achievement-card,
            .tech-item,
            .value-card {
                padding: 1.5rem;
            }

            .mission-card {
                padding: 1.5rem;
            }

            .achievement-card h3,
            .tech-item h3,
            .value-card h3 {
                font-size: 1.2rem;
            }

            .mission-card h2 {
                font-size: 2rem;
            }

            .mission-statement {
                font-size: 1.1rem;
            }

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

            .cta-section h2 {
                font-size: 2rem;
            }

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