/* SUB-HEADER ATTRACTIVE MINI BANNER STYLES */
        .header-mini-strip {
            position: relative;
            width: 100%;
            height: 140px; /* Short height banner */
            overflow: hidden;
            background-image: linear-gradient(rgba(10, 34, 64, 0.75), rgba(10, 34, 64, 0.5)), 
                              url('https://images.unsplash.com/photo-1517649763962-0c623066013b?auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center 30%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: #ffffff;
            text-align: center;
            box-shadow: inset 0 -10px 20px rgba(0,0,0,0.2);
        }
        .header-mini-strip h2 {
            font-size: 24px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 5px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
        }
        .header-mini-strip p {
            font-size: 14px;
            color: #ff6b35; /* Accent theme color */
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
        }
        @media (max-width: 768px) {
            .header-mini-strip { height: 110px; }
            .header-mini-strip h2 { font-size: 18px; padding: 0 15px; }
            .header-mini-strip p { font-size: 12px; }
        }