    /* Additional styles needed for SLA page - matching privacy policy style */
    .sla-content {
        background: #ffffff;
        border-radius: 30px;
        margin-top: -40px;
        position: relative;
        z-index: 10;
        padding: 60px 50px;
        box-shadow: 0 20px 40px -15px rgba(13,31,60,0.15);
    }

    .sla-section {
        margin-bottom: 50px;
        padding-bottom: 30px;
        border-bottom: 1px solid #eef2f6;
    }

    .sla-section:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .section-title-sla {
        font-size: 32px;
        font-weight: 700;
        color: #0D1F3C;
        margin-bottom: 25px;
        position: relative;
        padding-left: 20px;
        border-left: 5px solid #f28b38;
    }

    /* Cards for special sections */
    .sla-card {
        background: #f9fafc;
        border-radius: 20px;
        padding: 35px;
        margin: 35px 0;
        border: 1px solid #eef2f6;
        transition: all 0.3s ease;
    }

    .sla-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 35px rgba(13,31,60,0.1);
    }

    .sla-card h5 {
        font-size: 22px;
        font-weight: 700;
        color: #0D1F3C;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .sla-card h5 i {
        color: #f28b38;
        font-size: 26px;
    }

    /* Alert boxes for important info */
    .sla-alert {
        background: rgba(242, 139, 56, 0.08);
        border-left: 5px solid #f28b38;
        padding: 25px 30px;
        border-radius: 12px;
        margin: 30px 0;
    }

    .sla-alert strong {
        color: #0D1F3C;
        font-size: 18px;
        display: block;
        margin-bottom: 12px;
    }

    .sla-alert p {
        margin-bottom: 0;
        font-size: 16px;
        line-height: 1.7;
    }

    /* Two column layout */
    .sla-row {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -15px;
    }

    .sla-col {
        flex: 0 0 50%;
        padding: 0 15px;
    }

    /* Badge styles */
    .sla-badge {
        display: inline-block;
        background: rgba(13,31,60,0.08);
        padding: 8px 18px;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 600;
        color: #0D1F3C;
        margin-right: 12px;
        margin-bottom: 12px;
    }

    .sla-badge i {
        margin-right: 6px;
        color: #f28b38;
    }

    /* Highlight boxes for SLA tiers */
    .sla-tier-container {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        margin: 30px 0;
    }

    .sla-tier {
        flex: 1 1 calc(20% - 16px);
        background: white;
        border: 1px solid #eef2f6;
        border-radius: 16px;
        padding: 25px 15px;
        text-align: center;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    }

    .sla-tier:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(13,31,60,0.1);
        border-color: #f28b38;
    }

    .sla-tier .tier-name {
        font-size: 18px;
        font-weight: 700;
        color: #0D1F3C;
        margin-bottom: 10px;
    }

    .sla-tier .tier-price {
        font-size: 24px;
        font-weight: 800;
        color: #f28b38;
        margin-bottom: 10px;
    }

    .sla-tier .tier-price small {
        font-size: 14px;
        font-weight: 400;
        color: #6b7280;
    }

    .sla-tier .tier-time {
        font-size: 14px;
        color: #6b7280;
        line-height: 1.5;
    }

    .sla-tier.highlight {
        border: 2px solid #f28b38;
        background: rgba(242,139,56,0.02);
    }

    /* Responsive */
    @media (max-width: 991px) {
        .sla-content {
            padding: 40px 30px;
        }
        .section-title-sla {
            font-size: 28px;
        }
        .sla-tier-container {
            gap: 15px;
        }
        .sla-tier {
            flex: 1 1 calc(33.33% - 10px);
        }
    }

    @media (max-width: 767px) {
        .sla-content {
            padding: 30px 20px;
            border-radius: 20px;
            z-index: 5;
        }
        .section-title-sla {
            font-size: 24px;
            padding-left: 15px;
        }
        .sla-card {
            padding: 25px;
        }
        .sla-card h5 {
            font-size: 20px;
        }
        .sla-row {
            flex-direction: column;
        }
        .sla-col {
            flex: 0 0 100%;
        }
        .sla-tier-container {
            flex-direction: column;
        }
        .sla-tier {
            flex: 1 1 100%;
        }
    }

    /* Mobile menu fix */
    @media (max-width: 991px) {
        .drawer,
        .drawer-nav,
        .mobile-menu-container,
        [class*="drawer-"] {
            z-index: 999999 !important;
        }
        
        .drawer-open .sla-content,
        .drawer-open .sla-card,
        .drawer-open .sla-alert {
            z-index: 1 !important;
        }
        
        .drawer-overlay {
            z-index: 99999 !important;
        }
    }

    header {
        z-index: 99999 !important;
    }