
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
          background: linear-gradient(135deg, #2c3e50 0%, #4ca1af 100%);
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            text-align: center;
        }

        .header {
            margin-bottom: 40px;
        }

        .header h1 {
            font-size: 2.5rem;
            color: #ffffff;
            margin-bottom: 15px;
        }

        .header p {
            font-size: 1.2rem;
            color: #7f8c8d;
            max-width: 600px;
            margin: 0 auto;
        }

        .cards-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }

        .card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            width: 100%;
            max-width: 400px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
            position: relative;
        }

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

        .card-header {
            padding: 25px 20px;
            color: white;
            position: relative;
        }

        .bench-sales .card-header {
            background: linear-gradient(135deg, #ff7e5f 0%, #feb47b 100%);
        }

        .us-recruiter .card-header {
            background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
        }

        .card-icon {
            font-size: 3.5rem;
            margin-bottom: 15px;
        }

        .card-title {
            font-size: 1.8rem;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .card-subtitle {
            font-size: 1rem;
            opacity: 0.9;
        }

        .card-body {
            padding: 25px;
            color: #2c3e50;
        }

        .features {
            list-style: none;
            text-align: left;
            margin-bottom: 25px;
        }

        .features li {
            margin-bottom: 12px;
            display: flex;
            align-items: center;
        }

        .features i {
            margin-right: 10px;
            color: #3498db;
            font-size: 1.2rem;
        }

        .bench-sales .features i {
            color: #ff7e5f;
        }

        .us-recruiter .features i {
            color: #00c6ff;
        }

        .select-btn {
            background: linear-gradient(135deg, #2c3e50 0%, #4a6491 100%);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            outline: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .bench-sales .select-btn {
            background: linear-gradient(135deg, #ff7e5f 0%, #feb47b 100%);
        }

        .us-recruiter .select-btn {
            background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
        }

        .select-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .select-btn i {
            margin-left: 8px;
        }

        .card-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(255, 255, 255, 0.2);
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            backdrop-filter: blur(10px);
        }

        /* Modal styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 100;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .modal.active {
            display: flex;
            opacity: 1;
        }

        .modal-content {
            background: white;
            padding: 30px;
            border-radius: 15px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            transform: scale(0.9);
            transition: transform 0.3s ease;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
        }

        .modal.active .modal-content {
            transform: scale(1);
        }

        .modal-title {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: #2c3e50;
        }

        .modal-text {
            margin-bottom: 25px;
            color: #7f8c8d;
            line-height: 1.6;
        }

        .modal-btn {
            padding: 10px 20px;
            border-radius: 50px;
            border: none;
            background: #3498db;
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .modal-btn:hover {
            background: #2980b9;
        }

        /* Responsive styles */
        @media (max-width: 900px) {
            .cards-container {
                flex-direction: column;
                align-items: center;
            }
            
            .card {
                max-width: 100%;
            }
        }

        @media (max-width: 480px) {
            .header h1 {
                font-size: 2rem;
            }
            
            .header p {
                font-size: 1rem;
            }
            
            .card-title {
                font-size: 1.5rem;
            }
        }

        /* Animation for page load */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .card {
            animation: fadeIn 0.5s ease forwards;
        }

        .bench-sales {
            animation-delay: 0.2s;
        }

        .us-recruiter {
            animation-delay: 0.4s;
        }
    .fire-container {
            text-align: center;
            padding: 10px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            box-shadow: 0 15px 15px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .fire-icon {
            display: inline-block;
            position: relative;
            font-size: 4rem;
            color: #FF5722;
            text-shadow: 0 0 10px #FF9800, 0 0 20px #FF5722;
            animation: flicker 1.5s infinite alternate;
            margin-bottom: 10px;
        }
        
        .fire-icon::before {
            content: "\f06d"; /* FontAwesome fire icon */
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
        }
        
        @keyframes flicker {
            0%, 100% {
                text-shadow: 0 0 20px #FF9800, 0 0 40px #FF5722;
                transform: scale(1);
            }
            50% {
                text-shadow: 0 0 30px #FF9800, 0 0 60px #FF5722, 0 0 80px #FF5722;
                transform: scale(1.05);
            }
        }
        
        .fire-title {
            color: white;
            font-size: 1.8rem;
            margin-bottom: 10px;
            font-weight: 600;
        }
        
        .fire-subtitle {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.1rem;
            max-width: 300px;
        }