
        .tech-sales-container {
/*             max-width: 1200px; */
            margin: 0 auto;
            padding: 60px 20px;
            position: relative;
        }
        
        /* Background with overlay */
        .tech-sales-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
/*             opacity: 0.8; */
            z-index: -1;
        }
        
        .tech-sales-container::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:rgba(0,0,0,.6);
            z-index: -1;
        }
        
        .tech-sales-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .tech-sales-title {
            font-size: 2.5rem;
            color: white;
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .tech-sales-subtitle {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
            color: white;
        }
        
        .tech-sales-pathways {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 25px;
        }
        
        .tech-sales-card {
            
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            width: 100%;
            max-width: 400px;
            display: flex;
            flex-direction: column;
          
/*             height: 480px; /* Fixed height for consistency */ 
           background: rgba(255, 255, 255, 0.3);
           backdrop-filter: blur(5px);
        }
        
        .tech-sales-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(35, 98, 177, 0.15);
        }
        
        .tech-sales-card-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .tech-sales-card-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #2362B1, #1A4A8A);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: white;
            font-size: 1.5rem;
        }
        
        .tech-sales-card-title {
            font-size: 1.5rem;
            color: white;
            margin-bottom: 8px;
            font-weight: 700;
        }
        
        .tech-sales-card-subtitle {
            font-size: 1rem;
            color: white;
            font-weight: 500;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eef5ff;
        }
        
        .tech-sales-card-description {
            margin-bottom: 20px;
            color: white;
            line-height: 1.6;
            font-size: 0.95rem;
        }
        
        .tech-sales-features {
            list-style-type: none;
            margin-bottom: 25px;
        }
        
        .tech-sales-features li {
            padding: 8px 0;
            position: relative;
            padding-left: 25px;
            color: white;
            font-size: 0.95rem;
        }
        
        .tech-sales-features li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #2362B1;
            font-weight: bold;
        }
        
        .tech-sales-card-footer {
            margin-top: auto;
        }
        
        .tech-sales-button {
            display: block;
            background: linear-gradient(to right, #2362B1, #1A4A8A);
            color: white;
            padding: 12px 20px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            text-align: center;
            width: 100%;
            border: none;
            font-size: 1rem;
            cursor: pointer;
        }
        
        .tech-sales-button:hover {
            background: linear-gradient(to right, #1A4A8A, #2362B1);
            transform: translateY(-2px);
            box-shadow: 0 5px 12px rgba(35, 98, 177, 0.3);
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .tech-sales-pathways {
                gap: 20px;
            }
            
            .tech-sales-card {
                max-width: 300px;
                height: 460px;
            }
        }
        
        @media (max-width: 768px) {
            .tech-sales-pathways {
                flex-direction: column;
                align-items: center;
            }
            
            .tech-sales-card {
                max-width: 100%;
                height: auto;
                min-height: 420px;
            }
            
            .tech-sales-title {
                font-size: 2rem;
            }
            
            .tech-sales-container::before {
                background-attachment: scroll;
            }
        }
