    /* Additional styles needed for AUP page - matching privacy policy and SLA style */
    .aup-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);
    }

    .aup-section {
        margin-bottom: 50px;
        padding-bottom: 30px;
        border-bottom: 1px solid #eef2f6;
    }

    .aup-section:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .section-title-aup {
        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 */
    .aup-card {
        background: #f9fafc;
        border-radius: 20px;
        padding: 35px;
        margin: 35px 0;
        border: 1px solid #eef2f6;
        transition: all 0.3s ease;
    }

    .aup-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 35px rgba(13,31,60,0.1);
    }

    .aup-card h5 {
        font-size: 22px;
        font-weight: 700;
        color: #0D1F3C;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .aup-card h5 i {
        color: #f28b38;
        font-size: 26px;
    }

    /* Alert boxes for important info */
    .aup-alert {
        background: rgba(242, 139, 56, 0.08);
        border-left: 5px solid #f28b38;
        padding: 25px 30px;
        border-radius: 12px;
        margin: 30px 0;
    }

    .aup-alert strong {
        color: #0D1F3C;
        font-size: 18px;
        display: block;
        margin-bottom: 12px;
    }

    .aup-alert p {
        margin-bottom: 0;
        font-size: 16px;
        line-height: 1.7;
    }

    /* Warning boxes for violations */
    .aup-warning {
        background: rgba(214, 37, 43, 0.05);
        border-left: 5px solid #d6252b;
        padding: 20px 25px;
        border-radius: 12px;
        margin: 25px 0;
    }

    .aup-warning strong {
        color: #d6252b;
        font-size: 16px;
        display: block;
        margin-bottom: 8px;
    }

    .aup-warning p {
        margin-bottom: 0;
        font-size: 15px;
        line-height: 1.6;
        color: #4a5568;
    }

    /* Two column layout */
    .aup-row {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -15px;
    }

    .aup-col {
        flex: 0 0 50%;
        padding: 0 15px;
    }

    /* Badge styles */
    .aup-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;
    }

    .aup-badge i {
        margin-right: 6px;
        color: #f28b38;
    }

    .aup-badge-red {
        background: rgba(214, 37, 43, 0.08);
        color: #d6252b;
    }

    .aup-badge-red i {
        color: #d6252b;
    }

    /* Resource limit boxes */
    .resource-limits {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        margin: 30px 0;
    }

    .resource-item {
        flex: 1 1 calc(33.33% - 14px);
        background: white;
        border: 1px solid #eef2f6;
        border-radius: 16px;
        padding: 25px 20px;
        text-align: center;
        transition: all 0.3s ease;
    }

    .resource-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(13,31,60,0.1);
        border-color: #f28b38;
    }

    .resource-icon {
        width: 60px;
        height: 60px;
        background: rgba(242,139,56,0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 15px auto;
    }

    .resource-icon i {
        font-size: 28px;
        color: #f28b38;
    }

    .resource-title {
        font-size: 18px;
        font-weight: 700;
        color: #0D1F3C;
        margin-bottom: 10px;
    }

    .resource-value {
        font-size: 24px;
        font-weight: 800;
        color: #f28b38;
        margin-bottom: 5px;
    }

    .resource-note {
        font-size: 13px;
        color: #6b7280;
    }

    /* Responsive */
    @media (max-width: 991px) {
        .aup-content {
            padding: 40px 30px;
        }
        .section-title-aup {
            font-size: 28px;
        }
        .resource-item {
            flex: 1 1 calc(50% - 10px);
        }
    }

    @media (max-width: 767px) {
        .aup-content {
            padding: 30px 20px;
            border-radius: 20px;
            z-index: 5;
        }
        .section-title-aup {
            font-size: 24px;
            padding-left: 15px;
        }
        .aup-card {
            padding: 25px;
        }
        .aup-card h5 {
            font-size: 20px;
        }
        .aup-row {
            flex-direction: column;
        }
        .aup-col {
            flex: 0 0 100%;
        }
        .resource-item {
            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 .aup-content,
        .drawer-open .aup-card,
        .drawer-open .aup-alert {
            z-index: 1 !important;
        }
        
        .drawer-overlay {
            z-index: 99999 !important;
        }
    }

    header {
        z-index: 99999 !important;
    }

    /* Form styling to match modern theme */
    #supportForm .form-control {
        border: 1px solid #eef2f6;
        border-radius: 12px;
        padding: 12px 16px;
        font-size: 15px;
        transition: all 0.3s ease;
    }

    #supportForm .form-control:focus {
        border-color: #f28b38;
        box-shadow: 0 0 0 3px rgba(242,139,56,0.1);
        outline: none;
    }

    #supportForm label {
        font-size: 15px;
        font-weight: 600;
        color: #0D1F3C;
        margin-bottom: 8px;
    }

    .supporttextholder {
        background: rgba(255,255,255,0.95);
        padding: 40px;
        border-radius: 20px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }
	
.modern-corporate-card {
    background: white;
    border-radius: 32px;
    padding: 50px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.modern-corporate-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #f28b38, #f9a826, #f28b38);
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.corporate-content {
    padding-right: 40px;
}

.corporate-badge {
    display: inline-block;
    background: rgba(242, 139, 56, 0.1);
    color: #f28b38;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.corporate-title {
    font-size: 36px;
    font-weight: 800;
    color: #0D1F3C;
    line-height: 1.2;
    margin-bottom: 20px;
}

.corporate-description {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 30px;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #f28b38, #f9a826);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon i {
    font-size: 22px;
    color: white;
}

.trust-text {
    flex: 1;
}

.trust-text strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #0D1F3C;
    margin-bottom: 4px;
}

.trust-text span {
    font-size: 14px;
    color: #6b7280;
}

/* Corporate Form Card */
.corporate-form-card {
    background: #f8fafc;
    border-radius: 24px;
    padding: 35px;
    border: 1px solid #eef2f6;
}

.form-title {
    font-size: 24px;
    font-weight: 700;
    color: #0D1F3C;
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 25px;
}

.form-group-modern {
    margin-bottom: 20px;
}

.form-group-modern label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #0D1F3C;
    margin-bottom: 8px;
}

.form-group-modern label i {
    color: #f28b38;
    font-size: 14px;
}

.modern-input {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    border: 2px solid #eef2f6;
    border-radius: 16px;
    background: white;
    transition: all 0.3s ease;
    font-family: inherit;
}

.modern-input:focus {
    outline: none;
    border-color: #f28b38;
    box-shadow: 0 0 0 4px rgba(242, 139, 56, 0.1);
}

.modern-input::placeholder {
    color: #a0aec0;
}

textarea.modern-input {
    resize: vertical;
    min-height: 120px;
}

.corporate-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #f28b38, #f9a826);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.corporate-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(242, 139, 56, 0.3);
}

.corporate-submit-btn:active {
    transform: translateY(0);
}

.corporate-submit-btn i {
    transition: transform 0.3s ease;
}

.corporate-submit-btn:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 991px) {
    .modern-corporate-card {
        padding: 40px 30px;
    }
    
    .corporate-content {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .corporate-title {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .modern-corporate-card {
        padding: 30px 20px;
        border-radius: 24px;
    }
    
    .corporate-title {
        font-size: 26px;
    }
    
    .trust-item {
        gap: 12px;
    }
    
    .trust-icon {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }
    
    .trust-icon i {
        font-size: 18px;
    }
    
    .corporate-form-card {
        padding: 25px 20px;
    }
    
    .modern-input {
        padding: 12px 14px;
    }
    
    .corporate-submit-btn {
        padding: 14px 20px;
    }
}