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

        .ai-tools-container {
            font-family: 'Outfit', sans-serif;
            background: linear-gradient(180deg, #f8f6f0 0%, #e8e4d9 100%);
            min-height: 100vh;
            color: #2c2415;
        }

        /* Global heading styles using Outfit */
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Outfit', sans-serif;
            margin-bottom: 0.5em;
            line-height: 1.2;
        }

        /* Header */
        .ai-tools-header {
            background: rgba(248, 246, 240, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #d4af37;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0.75rem 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-link {
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .logo-link:hover {
            transform: translateY(-1px);
        }

        .logo h1 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #2c2415;
            letter-spacing: 3px;
            margin: 0;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .logo-link:hover h1 {
            color: #d4af37;
        }

        .header-nav {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .nav-link {
            color: #2c2415;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            position: relative;
        }

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

        .enter-btn {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem 1.5rem;
            background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
            border: 2px solid #d4af37;
            color: #2c2415;
            border-radius: 8px;
            cursor: pointer;
            font-size: 0.9rem;
            font-weight: 700;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            text-decoration: none;
            font-family: inherit;
        }

        .enter-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .back-btn {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem 1.5rem;
            background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
            border: 2px solid #d4af37;
            color: #2c2415;
            border-radius: 8px;
            cursor: pointer;
            font-size: 0.9rem;
            font-weight: 700;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            text-decoration: none;
            font-family: inherit;
        }

        .back-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        /* Main Content */
        .ai-tools-main {
            padding: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .ai-tools-content {
            position: relative;
        }

        /* Resume Hero Section */
        .resume-hero {
            padding: 1rem 0 5rem 0;
            margin-bottom: 3rem;
            background: linear-gradient(135deg, rgba(107, 207, 127, 0.08) 0%, rgba(212, 175, 55, 0.08) 100%);
            border-radius: 20px;
            position: relative;
            overflow: hidden;
        }

        .resume-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(107, 207, 127, 0.1) 0%, transparent 50%);
            animation: pulse 8s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.3; }
            50% { transform: scale(1.1) rotate(180deg); opacity: 0.1; }
        }

        .hero-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .hero-icon {
            font-size: 5rem;
            margin-bottom: 1.5rem;
            display: block;
            background: linear-gradient(135deg, #6bcf7f 0%, #4a9d5f 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 4px 8px rgba(107, 207, 127, 0.3);
            animation: bounce 2s ease-in-out infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-10px); }
            60% { transform: translateY(-5px); }
        }

        .hero-title {
            font-size: 4rem;
            font-weight: 800;
            background: linear-gradient(135deg, #2c2415 0%, #d4af37 50%, #2c2415 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 4px;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
            position: relative;
        }

        .hero-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 150px;
            height: 4px;
            background: linear-gradient(135deg, #6bcf7f 0%, #d4af37 100%);
            border-radius: 2px;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            color: #5a4d37;
            max-width: 700px;
            margin: 0 auto 1rem auto;
            line-height: 1.7;
            font-weight: 400;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.05);
        }

        .hero-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin-bottom: 3rem;
            text-align: left;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 3rem;
        }

        .hero-features .feature {
            display: flex;
            align-items: center;
            gap: 1rem;
            font-size: 1.1rem;
            color: #2c2415;
            background: rgba(248, 246, 240, 0.9);
            padding: 1rem 1.5rem;
            border-radius: 12px;
            border: 2px solid transparent;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .hero-features .feature::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(107, 207, 127, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .hero-features .feature:hover {
            transform: translateY(-2px);
            border-color: #6bcf7f;
            box-shadow: 0 8px 25px rgba(107, 207, 127, 0.15);
        }

        .hero-features .feature:hover::before {
            left: 100%;
        }

        .hero-features .feature-icon {
            color: #6bcf7f;
            font-weight: 700;
            font-size: 1.4rem;
            text-shadow: 0 2px 4px rgba(107, 207, 127, 0.3);
        }

        .hero-actions {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }

        .hero-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            padding: 1.5rem 3rem;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1.2rem;
            font-weight: 700;
            letter-spacing: 2px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            text-decoration: none;
            font-family: inherit;
        }

        .hero-btn.primary {
            background: linear-gradient(135deg, #6bcf7f 0%, #4a9d5f 100%);
            color: white;
            border: 2px solid #6bcf7f;
        }

        .hero-btn.primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .about-link {
            color: #d4af37;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 600;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 1.5rem;
            border-radius: 25px;
            border: 2px solid #d4af37;
            background: rgba(212, 175, 55, 0.1);
            position: relative;
            overflow: hidden;
        }

        .about-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .about-link:hover {
            color: #b8941f;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
            background: rgba(212, 175, 55, 0.15);
        }

        .about-link:hover::before {
            left: 100%;
        }

        /* Other Tools Section */
        .other-tools-section {
            margin-bottom: 4rem;
        }

        .section-title {
            font-size: 2rem;
            font-weight: 700;
            color: #2c2415;
            letter-spacing: 2px;
            margin-bottom: 2rem;
            text-transform: uppercase;
            text-align: center;
        }

        /* Tools Grid */
        .tools-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .tool-card {
            background: rgba(248, 246, 240, 0.9);
            border: 2px solid #e8e4d9;
            border-radius: 12px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .tool-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            border-color: #d4af37;
        }

        .tool-card.featured {
            border-color: #6bcf7f;
            background: rgba(107, 207, 127, 0.05);
        }

        .tool-card.featured:hover {
            border-color: #4a9d5f;
            box-shadow: 0 15px 35px rgba(107, 207, 127, 0.2);
        }

        .tool-card.coming-soon {
            opacity: 0.7;
            cursor: default;
        }

        .tool-card.coming-soon:hover {
            transform: none;
            box-shadow: none;
        }

        .tool-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .tool-card h3 {
            font-size: 1.5rem;
            color: #2c2415;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .tool-description {
            color: #5a4d37;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .tool-features {
            text-align: left;
            margin-bottom: 2rem;
        }

        .feature {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
            color: #2c2415;
        }

        .feature-icon {
            color: #6bcf7f;
            font-weight: 700;
        }

        .tool-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            padding: 1rem 1.5rem;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            text-decoration: none;
            font-family: inherit;
        }

        .tool-btn.primary {
            background: linear-gradient(135deg, #6bcf7f 0%, #4a9d5f 100%);
            color: white;
            border: 2px solid #6bcf7f;
        }

        .tool-btn.primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .coming-soon-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: #d4af37;
            color: #2c2415;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 1px;
        }

        /* About Section */
        .about-section {
            background: rgba(248, 246, 240, 0.8);
            border-radius: 12px;
            padding: 4rem 2rem;
            margin-bottom: 4rem;
            text-align: center;
        }

        .about-content h2 {
            font-size: 2.5rem;
            color: #2c2415;
            margin-bottom: 1.5rem;
            font-weight: 700;
            letter-spacing: 2px;
        }

        .about-content p {
            font-size: 1.2rem;
            color: #5a4d37;
            max-width: 800px;
            margin: 0 auto 3rem auto;
            line-height: 1.6;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .benefit {
            text-align: center;
        }

        .benefit-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .benefit h4 {
            font-size: 1.3rem;
            color: #2c2415;
            margin-bottom: 0.5rem;
            font-weight: 700;
        }

        .benefit p {
            color: #5a4d37;
            line-height: 1.5;
            font-size: 1rem;
        }

        /* CTA Section */
        .cta-section {
            text-align: center;
            padding: 3rem 0;
            margin-bottom: 2rem;
        }

        .cta-content h2 {
            font-size: 2.5rem;
            color: #2c2415;
            margin-bottom: 1rem;
            font-weight: 700;
            letter-spacing: 2px;
        }

        .cta-content p {
            font-size: 1.2rem;
            color: #5a4d37;
            max-width: 600px;
            margin: 0 auto 2rem auto;
            line-height: 1.6;
        }

        .cta-btn {
            padding: 1.25rem 3rem;
            background: linear-gradient(135deg, #6bcf7f 0%, #4a9d5f 100%);
            border: none;
            color: white;
            border-radius: 50px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 700;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 6px 20px rgba(107, 207, 127, 0.3);
        }

        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(107, 207, 127, 0.4);
        }

        /* Footer */
        .ai-tools-footer {
            background: rgba(44, 36, 21, 0.9);
            color: #f8f6f0;
            padding: 2rem;
            text-align: center;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-text {
            font-size: 1rem;
            opacity: 0.9;
        }

        .footer-links {
            display: flex;
            gap: 2rem;
        }

        .footer-link {
            color: #f8f6f0;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }

        .footer-link:hover {
            color: #d4af37;
            transform: translateY(-1px);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .ai-tools-main {
                padding: 1rem;
            }

            .hero-title {
                font-size: 2.5rem;
                letter-spacing: 2px;
            }

            .hero-subtitle {
                font-size: 1.2rem;
            }

            .hero-features {
                grid-template-columns: 1fr;
                gap: 0.75rem;
                margin-bottom: 2rem;
            }

            .hero-btn {
                padding: 1rem 2rem;
                font-size: 1rem;
            }

            .about-link {
                font-size: 0.9rem;
            }

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

            .tools-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .header-nav {
                display: none;
            }

            .tool-card {
                padding: 1.5rem;
            }

            .tool-card h3 {
                font-size: 1.3rem;
            }

            .about-content h2 {
                font-size: 2rem;
            }

            .about-content p {
                font-size: 1.1rem;
            }

            .benefits-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

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

            .cta-content p {
                font-size: 1.1rem;
            }

            .footer-content {
                flex-direction: column;
                text-align: center;
            }
        }