        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #1e3a8a;
            --accent: #2563eb;
            --gray-50: #F9FAFB;
            --gray-100: #F3F4F6;
            --gray-200: #E5E7EB;
            --gray-500: #6B7280;
            --gray-700: #374151;
            --gray-900: #111827;
            --teal: #14B8A6;
            --teal-dark: #0D9488;
            --teal-light: #5EEAD4;
            --off-white: #F8F9FA;
            --white: #FFFFFF;
            --text-dark: #2C3E50;
            --text-medium: #64748B;
            --text-light: #94A3B8;
            --charcoal: #2C3E50;
            --charcoal-dark: #1A252F;
            --charcoal-light: #34495E;
            --border: #E2E8F0;
            --success: #10B981;
            --warning: #F59E0B;
            --purple: #8B5CF6;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.5;
            color: var(--gray-900);
            background: var(--gray-50);
        }

        .navbar {
            background: var(--white);
            padding: 0.75rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border);
            transition: all 0.3s ease;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .navbar.scrolled {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
        }

        .logo {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--charcoal);
            text-decoration: none;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo-icon {
            width: 28px;
            height: 28px;
            background: var(--teal);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1rem;
        }

        .logo span {
            color: var(--teal);
        }

        .main-content {
            padding: 100px 2rem 60px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .page-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .page-header h1 {
            font-size: 2rem;
            font-weight: 600;
            color: var(--gray-900);
            margin-bottom: 0.625rem;
        }

        .page-header p {
            font-size: 1rem;
            color: var(--gray-500);
        }

        .filter-tabs {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-bottom: 2.5rem;
            flex-wrap: wrap;
        }

        .filter-tab {
            padding: 0.5rem 1rem;
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: 6px;
            color: var(--gray-700);
            font-weight: 500;
            font-size: 0.875rem;
            cursor: pointer;
            transition: all 0.2s;
        }

        .filter-tab:hover {
            border-color: var(--teal);
            color: var(--teal);
        }

        .filter-tab.active {
            background: var(--teal);
            color: var(--white);
            border-color: var(--teal);
        }

        .templates-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.25rem;
            margin-bottom: 3rem;
        }

        .template-card {
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.2s;
            cursor: pointer;
        }

        .template-card:hover {
            border-color: var(--teal);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }

        .template-preview {
            width: 100%;
            height: 280px;
            background: var(--gray-50);
            display: flex;
            align-items: flex-start;
            justify-content: center;
            padding: 1.5rem 1rem;
            position: relative;
            overflow: hidden;
        }

        .resume-preview {
            width: 100%;
            height: 100%;
            background: white;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            font-size: 0.4rem;
            overflow: hidden;
        }

        .resume-header {
            background: var(--primary);
            color: white;
            padding: 0.75rem;
            text-align: center;
        }

        .resume-name {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 0.2rem;
        }

        .resume-title {
            font-size: 0.6rem;
            font-weight: 500;
        }

        .resume-body {
            padding: 0.6rem;
        }

        .resume-section {
            margin-bottom: 0.6rem;
        }

        .section-title {
            font-size: 0.6rem;
            font-weight: 600;
            color: var(--gray-900);
            margin-bottom: 0.15rem;
            padding-bottom: 0.1rem;
            border-bottom: 1px solid var(--teal);
            text-transform: uppercase;
        }

        .section-content {
            font-size: 0.4rem;
            color: var(--gray-700);
            line-height: 1.4;
        }

        .template-info {
            padding: 1rem;
        }

        .template-badge {
            display: inline-block;
            background: var(--gray-100);
            color: var(--gray-700);
            padding: 0.25rem 0.625rem;
            border-radius: 4px;
            font-size: 0.6875rem;
            font-weight: 500;
            margin-bottom: 0.5rem;
        }

        .template-info h3 {
            font-size: 0.9375rem;
            font-weight: 600;
            margin-bottom: 0.375rem;
            color: var(--gray-900);
        }

        .template-info p {
            color: var(--gray-500);
            font-size: 0.8125rem;
            margin-bottom: 0.875rem;
        }

        .template-button {
            width: 100%;
            padding: 0.5rem;
            background: var(--teal);
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: 500;
            font-size: 0.875rem;
            cursor: pointer;
            transition: opacity 0.2s;
        }

        .template-button:hover {
            opacity: 0.9;
        }

        @media (max-width: 1024px) {
            .templates-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            .main-content {
                padding: 90px 1.5rem 50px;
            }

            .templates-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 480px) {
            .templates-grid {
                grid-template-columns: 1fr;
            }
        }

           .footer {
            background: linear-gradient(135deg, var(--charcoal-dark) 0%, var(--charcoal) 100%);
            color: var(--off-white);
            padding: 3.5rem 2rem 2rem;
            position: relative;
            overflow: hidden;
        }


        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1.5fr 2fr;
            gap: 3rem;
            margin-bottom: 2.5rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-brand {
            max-width: 450px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 0.625rem;
            margin-bottom: 1rem;
        }

        .footer-logo .logo-icon {
            width: 36px;
            height: 36px;
            background: var(--teal);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.125rem;
        }

        .footer-logo span {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--white);
        }

        .footer-tagline {
            font-size: 1rem;
            color: var(--teal-light);
            margin-bottom: 0.75rem;
            font-weight: 500;
        }

        .footer-description {
            color: var(--text-light);
            line-height: 1.6;
            font-size: 0.875rem;
            margin-bottom: 0;
        }

        .footer-links-wrapper {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
        }

        .footer-quick-links {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0.75rem;
        }

        .quick-link-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.875rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .quick-link-item:hover {
            background: rgba(20, 184, 166, 0.15);
            border-color: var(--teal);
            transform: translateY(-2px);
        }

        .quick-link-icon {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: white;
        }

        .quick-link-icon svg {
            width: 18px;
            height: 18px;
        }

        .quick-link-text {
            display: flex;
            flex-direction: column;
        }

        .quick-link-text span:first-child {
            font-size: 0.75rem;
            color: var(--text-light);
            font-weight: 500;
        }

        .quick-link-text span:last-child {
            font-size: 0.875rem;
            color: var(--white);
            font-weight: 600;
        }

        .footer-links h4 {
            font-size: 0.9375rem;
            margin-bottom: 1rem;
            color: var(--white);
            font-weight: 600;
            position: relative;
            padding-bottom: 0.5rem;
        }

        .footer-links h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 30px;
            height: 2px;
            background: var(--teal);
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links ul li {
            margin-bottom: 0.625rem;
        }

        .footer-links a {
            color: var(--text-light);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.875rem;
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--teal-light);
            transform: translateX(3px);
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--text-light);
            font-size: 0.8125rem;
        }

        .footer-bottom p {
            margin: 0;
        }

        .footer-social {
            display: flex;
            gap: 0.75rem;
        }

        .social-link {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .social-link:hover {
            background: var(--teal);
            color: white;
            transform: translateY(-3px);
            border-color: var(--teal);
            box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
        }

        .social-link svg {
            width: 18px;
            height: 18px;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2.5rem;
            }

            .hero-content h1 {
                font-size: 2rem;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-image img {
                margin: 0 auto;
            }

            .floating-card {
                display: none;
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .templates-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .steps-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .steps-grid::before {
                display: none;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .footer-brand {
                max-width: 100%;
            }

            .footer-links-wrapper {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-quick-links {
                grid-column: 1 / -1;
            }
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }

            .nav-menu {
                display: none;
            }

            .hero {
                padding: 100px 1.5rem 50px;
            }

            .hero-content h1 {
                font-size: 1.75rem;
            }

            .hero-content p {
                font-size: 0.9375rem;
            }

            .section-header h2 {
                font-size: 1.5rem;
            }

            .features-grid,
            .templates-grid,
            .steps-grid {
                grid-template-columns: 1fr;
            }

            .cta h2 {
                font-size: 1.5rem;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .footer-links-wrapper {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .footer-quick-links {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 1.25rem;
                text-align: center;
            }

            .footer-social {
                justify-content: center;
            }
        }
