 /* Specific styles for Offers Page Tabs */
        .offers-hero {
            background: linear-gradient(135deg, #293750 0%, #1a253a 100%);
            padding: 120px 0 60px;
            text-align: center;
            color: white;
        }

        .offers-hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .offers-hero .highlight {
            color: #e63946;
        }

        .offers-hero p {
            font-size: 1.25rem;
            color: #cbd5e1;
            max-width: 700px;
            margin: 0 auto 40px;
        }

        /* Tab Navigation */
        .license-tabs {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }

        .tab-btn {
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.2);
            color: white;
            padding: 15px 30px;
            border-radius: 50px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .tab-btn:hover,
        .tab-btn.active {
            background: #e63946;
            border-color: #e63946;
            transform: translateY(-2px);
        }

        /* Product Cards Grid */
        .offers-grid {
            display: none;
            /* Hidden by default */
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            animation: fadeIn 0.5s ease-in-out;
        }

        .offers-grid.active {
            display: grid;
        }

        .offer-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            border: 1px solid #eee;
            transition: transform 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .offer-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .discount-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: #e63946;
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: 700;
            font-size: 0.9rem;
        }

        .offer-img {
            height: 120px;
            object-fit: contain;
            margin-bottom: 20px;
        }

        .offer-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #293750;
            margin-bottom: 5px;
        }

        .offer-subtitle {
            color: #64748b;
            margin-bottom: 20px;
        }

        .pricing-block {
            margin-bottom: 25px;
        }

        .old-price {
            text-decoration: line-through;
            color: #94a3b8;
            font-size: 1.1rem;
            margin-right: 10px;
        }

        .new-price {
            color: #e63946;
            font-size: 2.5rem;
            font-weight: 800;
        }

        .btn-offer {
            display: block;
            width: 100%;
            padding: 15px;
            border-radius: 10px;
            font-weight: 700;
            text-align: center;
            text-decoration: none;
            margin-bottom: 15px;
            transition: all 0.2s;
        }

        .btn-buy-offer {
            background: #e63946;
            color: white;
        }

        .btn-buy-offer:hover {
            background: #e63946;
            color: white;
        }

        .btn-dl-offer {
            background: #f1f5f9;
            color: #475569;
        }

        .btn-dl-offer:hover {
            background: #e2e8f0;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .guarantee-section {
            background: #f8fafc;
            padding: 80px 0;
            margin-top: 80px;
            text-align: center;
        }

        .guarantee-grid {
            display: flex;
            justify-content: center;
            gap: 50px;
            flex-wrap: wrap;
            max-width: 1000px;
            margin: 0 auto;
        }

        .g-item img {
            margin-bottom: 15px;
        }

        .g-item h4 {
            font-weight: 700;
            margin-bottom: 5px;
        }