    .contact-menu-btn:hover {
        background-color: #ffffffaa;
    }
    /* We put style tag here because transitions/animations can't be fully inline */
    #menuOverlay.show {
        display: flex !important;
        opacity: 1 !important;
    }
    #menuOverlay.hide {
        opacity: 0 !important;
        transition: opacity 0.4s;
    }

        /* Header */
        .about-header {
            position: relative;
            background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 50%, #e2e8f0 100%);
            color: #1a1a1a;
            padding: 4rem 0;
            text-align: center;
            overflow: hidden;
        }

        .header-bg {
            position: absolute;
            inset: 0;
            pointer-events: none;
        }

        .header-bg::before {
            content: '';
            position: absolute;
            top: -10%;
            left: 50%;
            transform: translateX(-50%);
            width: 40rem;
            height: 40rem;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            filter: blur(120px);
        }

        .header-bg::after {
            content: '';
            position: absolute;
            bottom: 10%;
            right: 10%;
            width: 24rem;
            height: 24rem;
            background: radial-gradient(circle, rgba(34, 197, 94, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            filter: blur(100px);
        }

        .header-content {
            position: relative;
            z-index: 10;
        }

        .header-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            border-radius: 9999px;
            border: 1px solid rgba(59, 130, 246, 0.3);
            background: rgba(59, 130, 246, 0.1);
            backdrop-filter: blur(10px);
            margin-bottom: 1.5rem;
        }

        .pulse-dot {
            width: 0.5rem;
            height: 0.5rem;
            background: #3b82f6;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        .header-badge span {
            font-size: 0.875rem;
            color: #60a5fa;
            font-weight: 500;
            letter-spacing: 0.05em;
        }

        .header-content h1 {
            font-size: 4rem;
            margin-bottom: 1rem;
            font-weight: 700;
            background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .header-content .highlight {
            background: linear-gradient(135deg, #3b82f6 0%, #22c55e 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .header-content p {
            font-size: 1.25rem;
            opacity: 0.7;
            max-width: 600px;
            margin: 0 auto;
            color: #475569;
        }


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


        /* Main Content */
        main {
            background: #f8fafc;
            min-height: 100vh;
        }

        .section {
            position: relative;
            padding: 4rem 0;
            overflow: hidden;
        }

        .section-bg {
            position: absolute;
            inset: 0;
            pointer-events: none;
        }

        .section-bg::before {
            content: '';
            position: absolute;
            top: 20%;
            left: 10%;
            width: 20rem;
            height: 20rem;
            background: radial-gradient(circle, rgba(34, 197, 94, 0.05) 0%, transparent 70%);
            border-radius: 50%;
            filter: blur(80px);
        }

        .section-bg::after {
            content: '';
            position: absolute;
            bottom: 20%;
            right: 10%;
            width: 24rem;
            height: 24rem;
            background: radial-gradient(circle, rgba(168, 85, 247, 0.05) 0%, transparent 70%);
            border-radius: 50%;
            filter: blur(100px);
        }

        .section-content {
            position: relative;
            z-index: 10;
        }

        .cv-download-div {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .section h2 {
            color: #1e293b;
            font-size: 3rem;
            margin-bottom: 2rem;
            text-align: center;
            font-weight: 700;
        }

        .section h2 .highlight {
            background: linear-gradient(135deg, #3b82f6 0%, #22c55e 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            color: #475569;
            text-align: center;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .service-card {
            group: relative;
            position: relative;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            border-radius: 1.5rem;
            padding: 2rem;
            border: 1px solid rgba(0, 0, 0, 0.1);
            transition: all 0.5s ease;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(34, 197, 94, 0.1) 100%);
            border-radius: 1.5rem;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

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

        .service-card:hover {
            transform: translateY(-5px);
            border-color: rgba(59, 130, 246, 0.3);
            box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
        }

        .service-icon {
            width: 4rem;
            height: 4rem;
            background: linear-gradient(135deg, #3b82f6 0%, #22c55e 100%);
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            transition: transform 0.3s ease;
        }

        .service-card:hover .service-icon {
            transform: scale(1.1);
        }

        .service-icon svg {
            width: 1.75rem;
            height: 1.75rem;
            color: white;
        }

        .service-card h3 {
            color: #1e293b;
            font-size: 1.5rem;
            text-align: center;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .service-card p {
            color: #475569;
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .service-features {
            list-style: none;
            space-y: 0.75rem;
        }

        .service-features li {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #64748b;
            font-size: 0.875rem;
            margin-bottom: 0.75rem;
        }

        .feature-dot {
            width: 0.5rem;
            height: 0.5rem;
            border-radius: 50%;
            flex-shrink: 0;
        }

        .dot-blue {
            background: #3b82f6;
        }

        .dot-green {
            background: #22c55e;
        }

        .dot-purple {
            background: #a855f7;
        }

        .dot-cyan {
            background: #06b6d4;
        }

        .dot-orange {
            background: #f97316;
        }

        .dot-pink {
            background: #ec4899;
        }

        /* Contact & Other Sections */
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .contact-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 1.5rem;
            padding: 2rem;
            border: 1px solid rgba(59, 130, 246, 0.2);
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .contact-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 30px rgba(59, 130, 246, 0.15);
        }

        .contact-card h3 {
            color: #1e293b;
            font-size: 1.25rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .contact-card a {
            color: #3b82f6;
            text-decoration: none;
            margin: 0px;
            font-size: 1.1rem;
            transition: color 0.3s ease;
            font-weight: 500;
        }

        .contact-card a:hover {
            color: #1d4ed8;
        }

        .faq-item {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 1.5rem;
            padding: 2rem;
            border: 1px solid rgba(0, 0, 0, 0.1);
            margin-bottom: 2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }

        .faq-item h3 {
            color: #1e293b;
            margin-bottom: 1rem;
            font-size: 1.25rem;
            font-weight: 600;
        }

        .faq-item p {
            color: #475569;
            text-align: left;
            line-height: 1.6;
        }

        .cv-download {
            display: inline-block;
            background: linear-gradient(135deg, #3b82f6 0%, #22c55e 100%);
            color: white;
            width: fit-content;
            padding: 1rem 2rem;
            text-decoration: none;
            border-radius: 0.5rem;
            margin-top: 1rem;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .cv-download:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
        }


        /* Responsive Design */
        @media (max-width: 768px) {
            .header-content h1 {
                font-size: 2.5rem;
            }
            .section h2 {
                font-size: 2rem;
            }

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

            .service-card {
                padding: 1.5rem;
            }
        }