/* 
 * Bootstrap Isolated Content Zone CSS
 * 
 * This CSS creates a completely isolated environment for Bootstrap components
 * that prevents conflicts with existing Lakestone.ai CSS/JS architecture.
 * 
 * Usage: Wrap any Bootstrap content in a .bootstrap-zone class
 * 
 * Example:
 * <section class="bootstrap-zone py-5">
 *     <div class="container">
 *         <!-- Bootstrap components go here -->
 *     </div>
 * </section>
 */

/* ============================================================================
   BOOTSTRAP ISOLATED ZONE - Complete CSS Reset and Isolation
   ============================================================================ */

.bootstrap-zone {
    all: initial !important;
    display: block !important;
    font-family: 'Roboto', sans-serif !important;
    font-weight: 300 !important;
    background: transparent !important;
    color: #212529 !important;
    line-height: 1.6 !important;
    box-sizing: border-box !important;
    position: relative !important;
    z-index: 1 !important;
}

/* Apply aggressive reset to everything EXCEPT SVG elements */
.bootstrap-zone *:not(svg):not(svg *),
.bootstrap-zone *::before,
.bootstrap-zone *::after {
    all: unset !important;
    display: revert !important;
    box-sizing: border-box !important;
    font-family: inherit !important;
}

/* Targeted reset for HTML elements, avoiding SVG elements */
.bootstrap-zone div,
.bootstrap-zone span,
.bootstrap-zone section,
.bootstrap-zone h1, .bootstrap-zone h2, .bootstrap-zone h3, .bootstrap-zone h4, .bootstrap-zone h5, .bootstrap-zone h6,
.bootstrap-zone p, .bootstrap-zone a {
    all: unset !important;
    display: revert !important;
    box-sizing: border-box !important;
    font-family: inherit !important;
}

/* SVG elements need special handling to display properly after aggressive reset */
.bootstrap-zone svg {
    display: inline-block !important;
    vertical-align: middle !important;
    fill: currentColor !important;
    width: 42px !important;
    height: 42px !important;
    overflow: visible !important;
    pointer-events: auto !important;
}

.bootstrap-zone svg path {
    fill: inherit !important;
    pointer-events: auto !important;
}

.bootstrap-zone svg * {
    fill: inherit !important;
    pointer-events: auto !important;
}


/* ============================================================================
   BOOTSTRAP CSS VARIABLES
   ============================================================================ */

.bootstrap-zone {
    --bs-blue: #0d6efd;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    --bs-gray-100: #f8f9fa;
    --bs-gray-200: #e9ecef;
    --bs-gray-300: #dee2e6;
    --bs-gray-400: #ced4da;
    --bs-gray-500: #adb5bd;
    --bs-gray-600: #6c757d;
    --bs-gray-700: #495057;
    --bs-gray-800: #343a40;
    --bs-gray-900: #212529;
    --bs-primary: #0d6efd;
    --bs-secondary: #6c757d;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
    --bs-dark: #212529;
}

/* ============================================================================
   BOOTSTRAP CONTAINER & GRID SYSTEM
   ============================================================================ */

.bootstrap-zone .container {
    width: 100% !important;
    padding-right: 15px !important;
    padding-left: 15px !important;
    margin-right: auto !important;
    margin-left: auto !important;
}

.bootstrap-zone .row {
    display: flex !important;
    flex-wrap: wrap !important;
    margin-right: -15px !important;
    margin-left: -15px !important;
}

.bootstrap-zone .col-12 {
    position: relative !important;
    width: 100% !important;
    padding-right: 15px !important;
    padding-left: 15px !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
}

.bootstrap-zone .col-md-4 {
    flex: 0 0 33.333333% !important;
    max-width: 33.333333% !important;
}

.bootstrap-zone .col-md-5 {
    flex: 0 0 41.666667% !important;
    max-width: 41.666667% !important;
}

.bootstrap-zone .col-md-6 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
}

.bootstrap-zone .col-md-8 {
    flex: 0 0 66.666667% !important;
    max-width: 66.666667% !important;
}

.bootstrap-zone .col-md-10 {
    flex: 0 0 83.333333% !important;
    max-width: 83.333333% !important;
}

.bootstrap-zone .col-lg-2 {
    flex: 0 0 16.666667% !important;
    max-width: 16.666667% !important;
}

.bootstrap-zone .col-lg-3 {
    flex: 0 0 25% !important;
    max-width: 25% !important;
}

.bootstrap-zone .col-lg-4 {
    flex: 0 0 33.333333% !important;
    max-width: 33.333333% !important;
}

.bootstrap-zone .col-lg-6 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
}

.bootstrap-zone .col-lg-8 {
    flex: 0 0 66.666667% !important;
    max-width: 66.666667% !important;
}

.bootstrap-zone .col-lg-10 {
    flex: 0 0 83.333333% !important;
    max-width: 83.333333% !important;
}

.bootstrap-zone .col-xl-3 {
    flex: 0 0 25% !important;
    max-width: 25% !important;
}

.bootstrap-zone .col-xl-4 {
    flex: 0 0 33.333333% !important;
    max-width: 33.333333% !important;
}

.bootstrap-zone .col-xl-6 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
}

.bootstrap-zone .col-xl-7 {
    flex: 0 0 58.333333% !important;
    max-width: 58.333333% !important;
}

.bootstrap-zone .col-xxl-6 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
}

/* ============================================================================
   BOOTSTRAP UTILITY CLASSES
   ============================================================================ */

.bootstrap-zone .justify-content-center {
    justify-content: center !important;
}

.bootstrap-zone .justify-content-md-center {
    justify-content: center !important;
}

.bootstrap-zone .text-center {
    text-align: center !important;
}

.bootstrap-zone .text-start {
    text-align: left !important;
}

.bootstrap-zone .text-end {
    text-align: right !important;
}

.bootstrap-zone .mb-0 {
    margin-bottom: 0 !important;
}

.bootstrap-zone .mb-1 {
    margin-bottom: 0.25rem !important;
}

.bootstrap-zone .mb-2 {
    margin-bottom: 0.5rem !important;
}

.bootstrap-zone .mb-3 {
    margin-bottom: 1rem !important;
}

.bootstrap-zone .mb-4 {
    margin-bottom: 1.5rem !important;
}

.bootstrap-zone .mb-5 {
    margin-bottom: 3rem !important;
}

.bootstrap-zone .mb-xl-9 {
    margin-bottom: 6rem !important;
}

.bootstrap-zone .mt-0 {
    margin-top: 0 !important;
}

.bootstrap-zone .mt-1 {
    margin-top: 0.25rem !important;
}

.bootstrap-zone .mt-2 {
    margin-top: 0.5rem !important;
}

.bootstrap-zone .mt-3 {
    margin-top: 1rem !important;
}

.bootstrap-zone .mt-4 {
    margin-top: 1.5rem !important;
}

.bootstrap-zone .mt-5 {
    margin-top: 3rem !important;
}

.bootstrap-zone .py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.bootstrap-zone .py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
}

.bootstrap-zone .py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

.bootstrap-zone .py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

.bootstrap-zone .py-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
}

.bootstrap-zone .py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.bootstrap-zone .py-xl-8 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
}

.bootstrap-zone .px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.bootstrap-zone .px-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
}

.bootstrap-zone .px-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
}

.bootstrap-zone .px-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

.bootstrap-zone .px-4 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
}

.bootstrap-zone .px-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
}

.bootstrap-zone .gy-2 > * {
    margin-bottom: 0.5rem !important;
}

.bootstrap-zone .gy-3 > * {
    margin-bottom: 1rem !important;
}

.bootstrap-zone .gy-4 > * {
    margin-bottom: 1.5rem !important;
}

/* Adjusted row spacing to match reference design dimensions (1344x533.6) */

.bootstrap-zone .gy-5 > * {
    margin-bottom: 1.5rem !important;
}

.bootstrap-zone .gx-md-5 > * {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
}

/* Additional container width constraint to match reference design */
.bootstrap-zone .container.overflow-hidden {
    max-width: 1344px !important;
    margin: 0 auto !important;
}

.bootstrap-zone .overflow-hidden {
    overflow: hidden !important;
}

.bootstrap-zone .d-none {
    display: none !important;
}

.bootstrap-zone .d-block {
    display: block !important;
}

.bootstrap-zone .d-flex {
    display: flex !important;
}

.bootstrap-zone .align-items-center {
    align-items: center !important;
}

.bootstrap-zone .w-50 {
    width: 50% !important;
}

.bootstrap-zone .w-100 {
    width: 100% !important;
}

.bootstrap-zone .h-100 {
    height: 100% !important;
}

.bootstrap-zone .mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

/* ============================================================================
   BOOTSTRAP TYPOGRAPHY
   ============================================================================ */

.bootstrap-zone .display-1 {
    font-size: 5rem !important;
    font-weight: 300 !important;
    line-height: 1.2 !important;
}

.bootstrap-zone .display-2 {
    font-size: 4.5rem !important;
    font-weight: 300 !important;
    line-height: 1.2 !important;
}

.bootstrap-zone .display-3 {
    font-size: 4rem !important;
    font-weight: 300 !important;
    line-height: 1.2 !important;
}

.bootstrap-zone .display-4 {
    font-size: 3.5rem !important;
    font-weight: 300 !important;
    line-height: 1.2 !important;
}

.bootstrap-zone .display-5 {
    font-size: 3rem !important;
    font-weight: 300 !important;
    line-height: 1.2 !important;
}

.bootstrap-zone .display-6 {
    font-size: 2.5rem !important;
    font-weight: 300 !important;
    line-height: 1.2 !important;
}

.bootstrap-zone .lead {
    font-size: 1.25rem !important;
    font-weight: 300 !important;
    line-height: 1.6 !important;
}

.bootstrap-zone .text-muted {
    color: #6c757d !important;
}

.bootstrap-zone .text-primary {
    color: #0d6efd !important;
}

.bootstrap-zone .text-secondary {
    color: #6c757d !important;
}

.bootstrap-zone .text-success {
    color: #198754 !important;
}

.bootstrap-zone .text-danger {
    color: #dc3545 !important;
}

.bootstrap-zone .text-warning {
    color: #ffc107 !important;
}

.bootstrap-zone .text-info {
    color: #0dcaf0 !important;
}

.bootstrap-zone .text-light {
    color: #f8f9fa !important;
}

.bootstrap-zone .text-dark {
    color: #212529 !important;
}

.bootstrap-zone .fw-light {
    font-weight: 300 !important;
}

.bootstrap-zone .fw-normal {
    font-weight: 400 !important;
}

.bootstrap-zone .fw-bold {
    font-weight: 700 !important;
}

.bootstrap-zone .fw-bolder {
    font-weight: 900 !important;
}

.bootstrap-zone hr {
    margin: 1rem 0 !important;
    color: inherit !important;
    background-color: currentColor !important;
    border: 0 !important;
    opacity: 0.25 !important;
}

.bootstrap-zone .border-dark-subtle {
    border-color: #dee2e6 !important;
}

.bootstrap-zone h1,
.bootstrap-zone h2,
.bootstrap-zone h3,
.bootstrap-zone h4,
.bootstrap-zone h5,
.bootstrap-zone h6 {
    margin-top: 0 !important;
    margin-bottom: 0.5rem !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
    color: #212529 !important;
}

.bootstrap-zone h1 {
    font-size: 2.5rem !important;
}

.bootstrap-zone h2 {
    font-size: 2rem !important;
}

.bootstrap-zone h3 {
    font-size: 1.75rem !important;
}

.bootstrap-zone h4 {
    font-size: 1.75rem !important;
    margin-bottom: 0.5rem !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    color: #212529 !important;
}

.bootstrap-zone .mb-3 {
    margin-bottom: 1rem !important;
}

@media (min-width: 1200px) {
    .bootstrap-zone h4 {
        font-size: 2rem !important;
    }
}

.bootstrap-zone h5 {
    font-size: 1.25rem !important;
}

.bootstrap-zone h6 {
    font-size: 1rem !important;
}

.bootstrap-zone p {
    margin-top: 0 !important;
    margin-bottom: 0.75rem !important;
    color: #212529 !important;
    line-height: 1.5 !important;
    font-size: 0.9rem !important;
}

.bootstrap-zone a {
    color: #0d6efd !important;
    text-decoration: none !important;
}

.bootstrap-zone a:hover {
    color: #0a58ca !important;
    text-decoration: underline !important;
}

.bootstrap-zone svg {
    display: inline-block !important;
    vertical-align: middle !important;
    fill: currentColor !important;
    width: 42px !important;
    height: 42px !important;
    overflow: visible !important;
    pointer-events: auto !important;
}

/* ============================================================================
   BOOTSTRAP CARDS
   ============================================================================ */

.bootstrap-zone .card {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    min-width: 0 !important;
    word-wrap: break-word !important;
    background-color: #fff !important;
    background-clip: border-box !important;
    border: 1px solid rgba(0, 0, 0, 0.125) !important;
    border-radius: 0.375rem !important;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.bootstrap-zone .card-body {
    flex: 1 1 auto !important;
    padding: 1rem !important;
}

.bootstrap-zone .card-title {
    margin-bottom: 0.75rem !important;
    font-size: 1.25rem !important;
    font-weight: 500 !important;
    color: #212529 !important;
}

.bootstrap-zone .card-text {
    color: #6c757d !important;
    margin-bottom: 1rem !important;
}

.bootstrap-zone .card-header {
    padding: 0.75rem 1rem !important;
    margin-bottom: 0 !important;
    background-color: rgba(0, 0, 0, 0.03) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.125) !important;
}

.bootstrap-zone .card-footer {
    padding: 0.75rem 1rem !important;
    background-color: rgba(0, 0, 0, 0.03) !important;
    border-top: 1px solid rgba(0, 0, 0, 0.125) !important;
}

/* ============================================================================
   BOOTSTRAP BUTTONS
   ============================================================================ */

.bootstrap-zone .btn {
    display: inline-block !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
    color: #212529 !important;
    text-align: center !important;
    text-decoration: none !important;
    vertical-align: middle !important;
    cursor: pointer !important;
    user-select: none !important;
    background-color: transparent !important;
    border: 1px solid transparent !important;
    padding: 0.375rem 0.75rem !important;
    font-size: 1rem !important;
    border-radius: 0.375rem !important;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out !important;
}

.bootstrap-zone .btn-primary {
    color: #fff !important;
    background-color: #0d6efd !important;
    border-color: #0d6efd !important;
}

.bootstrap-zone .btn-primary:hover {
    color: #fff !important;
    background-color: #0b5ed7 !important;
    border-color: #0a58ca !important;
}

.bootstrap-zone .btn-secondary {
    color: #fff !important;
    background-color: #6c757d !important;
    border-color: #6c757d !important;
}

.bootstrap-zone .btn-secondary:hover {
    color: #fff !important;
    background-color: #5c636a !important;
    border-color: #565e64 !important;
}

.bootstrap-zone .btn-outline-primary {
    color: #0d6efd !important;
    border-color: #0d6efd !important;
}

.bootstrap-zone .btn-outline-primary:hover {
    color: #fff !important;
    background-color: #0d6efd !important;
    border-color: #0d6efd !important;
}

.bootstrap-zone .btn-lg {
    padding: 0.5rem 1rem !important;
    font-size: 1.25rem !important;
    border-radius: 0.5rem !important;
}

.bootstrap-zone .btn-sm {
    padding: 0.25rem 0.5rem !important;
    font-size: 0.875rem !important;
    border-radius: 0.25rem !important;
}

/* ============================================================================
   LAKESTONE AI CUSTOM COMPONENTS
   ============================================================================ */

/* Custom Service Cards with Lakestone AI branding - Transparent background */
.bootstrap-zone .service-card {
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    padding: 1rem !important;
    border-radius: 12px !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    max-width: 376px !important;
    height: auto !important;
}

/* Force bold heading in service cards */
.bootstrap-zone .service-card h4 {
    font-weight: 700 !important;
    font-size: 1.75rem !important;
    color: #212529 !important;
}

.bootstrap-zone .service-card:hover {
    background-color: rgba(35, 65, 217, 0.05) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.bootstrap-zone .service-icon {
    color: #2341D9 !important;
    transition: all 0.3s ease !important;
    background: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    width: auto !important;
    height: auto !important;
    display: inline-block !important;
    padding: 0 !important;
    margin: 0 !important;
}

.bootstrap-zone .service-card:hover .service-icon {
    transform: scale(1.1) !important;
}

.bootstrap-zone .card-cta {
    color: #2341D9 !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    transition: all 0.2s ease !important;
}

.bootstrap-zone .card-cta:hover {
    color: #1a2fa0 !important;
    text-decoration: underline !important;
}

/* Lakestone AI brand colors */
.bootstrap-zone .lakestone-primary {
    color: #00C8FF !important;
}

.bootstrap-zone .lakestone-bg-primary {
    background-color: #00C8FF !important;
    color: #ffffff !important;
}

.bootstrap-zone .lakestone-border-primary {
    border-color: #00C8FF !important;
}

/* ============================================================================
   BOOTSTRAP ACCORDION
   ============================================================================ */

.bootstrap-zone .accordion {
    --bs-accordion-color: #212529;
    --bs-accordion-bg: #fff;
    --bs-accordion-border-color: #dee2e6;
    --bs-accordion-border-width: 1px;
    --bs-accordion-border-radius: 0.375rem;
    --bs-accordion-inner-border-radius: 0.25rem;
    --bs-accordion-btn-padding-x: 1.25rem;
    --bs-accordion-btn-padding-y: 1rem;
    --bs-accordion-btn-color: #212529;
    --bs-accordion-btn-bg: #fff;
    --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    --bs-accordion-btn-icon-width: 1.25rem;
    --bs-accordion-btn-icon-transform: rotate(-180deg);
    --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
    --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23052c65'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    --bs-accordion-btn-focus-border-color: #86b7fe;
    --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    --bs-accordion-body-padding-x: 1.25rem;
    --bs-accordion-body-padding-y: 1rem;
    --bs-accordion-active-color: #052c65;
    --bs-accordion-active-bg: #e7f1ff;
}

.bootstrap-zone .accordion-button {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x) !important;
    font-size: 1rem !important;
    color: var(--bs-accordion-btn-color) !important;
    text-align: left !important;
    background-color: var(--bs-accordion-btn-bg) !important;
    border: 0 !important;
    border-radius: 0 !important;
    overflow-anchor: none !important;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease !important;
}

.bootstrap-zone .accordion-button:not(.collapsed) {
    color: var(--bs-accordion-active-color) !important;
    background-color: var(--bs-accordion-active-bg) !important;
    box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color) !important;
}

.bootstrap-zone .accordion-button:not(.collapsed)::after {
    background-image: var(--bs-accordion-btn-active-icon) !important;
    transform: var(--bs-accordion-btn-icon-transform) !important;
}

.bootstrap-zone .accordion-button::after {
    flex-shrink: 0 !important;
    width: var(--bs-accordion-btn-icon-width) !important;
    height: var(--bs-accordion-btn-icon-width) !important;
    margin-left: auto !important;
    content: "" !important;
    background-image: var(--bs-accordion-btn-icon) !important;
    background-repeat: no-repeat !important;
    background-size: var(--bs-accordion-btn-icon-width) !important;
    transition: var(--bs-accordion-btn-icon-transition) !important;
}

.bootstrap-zone .accordion-button:hover {
    z-index: 2 !important;
}

.bootstrap-zone .accordion-button:focus {
    z-index: 3 !important;
    border-color: var(--bs-accordion-btn-focus-border-color) !important;
    outline: 0 !important;
    box-shadow: var(--bs-accordion-btn-focus-box-shadow) !important;
}

.bootstrap-zone .accordion-header {
    margin-bottom: 0 !important;
}

.bootstrap-zone .accordion-item {
    color: var(--bs-accordion-color) !important;
    background-color: var(--bs-accordion-bg) !important;
    border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color) !important;
}

.bootstrap-zone .accordion-item:first-of-type {
    border-top-left-radius: var(--bs-accordion-border-radius) !important;
    border-top-right-radius: var(--bs-accordion-border-radius) !important;
}

.bootstrap-zone .accordion-item:first-of-type > .accordion-header .accordion-button {
    border-top-left-radius: var(--bs-accordion-inner-border-radius) !important;
    border-top-right-radius: var(--bs-accordion-inner-border-radius) !important;
}

.bootstrap-zone .accordion-item:not(:first-of-type) {
    border-top: 0 !important;
}

.bootstrap-zone .accordion-item:last-of-type {
    border-bottom-right-radius: var(--bs-accordion-border-radius) !important;
    border-bottom-left-radius: var(--bs-accordion-border-radius) !important;
}

.bootstrap-zone .accordion-item:last-of-type > .accordion-header .accordion-button.collapsed {
    border-bottom-right-radius: var(--bs-accordion-inner-border-radius) !important;
    border-bottom-left-radius: var(--bs-accordion-inner-border-radius) !important;
}

.bootstrap-zone .accordion-item:last-of-type > .accordion-collapse {
    border-bottom-right-radius: var(--bs-accordion-border-radius) !important;
    border-bottom-left-radius: var(--bs-accordion-border-radius) !important;
}

.bootstrap-zone .accordion-body {
    padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x) !important;
}

.bootstrap-zone .accordion-flush .accordion-collapse {
    border-width: 0 !important;
}

.bootstrap-zone .accordion-flush .accordion-item {
    border-right: 0 !important;
    border-left: 0 !important;
    border-radius: 0 !important;
}

.bootstrap-zone .accordion-flush .accordion-item:first-child {
    border-top: 0 !important;
}

.bootstrap-zone .accordion-flush .accordion-item:last-child {
    border-bottom: 0 !important;
}

.bootstrap-zone .accordion-flush .accordion-item > .accordion-header .accordion-button,
.bootstrap-zone .accordion-flush .accordion-item > .accordion-header .accordion-button.collapsed {
    border-radius: 0 !important;
}

.bootstrap-zone .accordion-flush .accordion-item > .accordion-collapse {
    border-radius: 0 !important;
}

/* Collapse functionality */
.bootstrap-zone .collapse:not(.show) {
    display: none !important;
}

.bootstrap-zone .collapsing {
    height: 0 !important;
    overflow: hidden !important;
    transition: height 0.35s ease !important;
}

.bootstrap-zone .collapsing.collapse-horizontal {
    width: 0 !important;
    height: auto !important;
    transition: width 0.35s ease !important;
}

/* Additional Bootstrap utilities for FAQ */
.bootstrap-zone .bg-light {
    background-color: #f8f9fa !important;
}

.bootstrap-zone .shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.bootstrap-zone .fw-bold {
    font-weight: 700 !important;
}

.bootstrap-zone .fs-4 {
    font-size: calc(1.275rem + 0.3vw) !important;
}

.bootstrap-zone .lead {
    font-size: 1.25rem !important;
    font-weight: 300 !important;
}

/* ============================================================================
   RESPONSIVE BREAKPOINTS
   ============================================================================ */

@media (min-width: 768px) {
    .bootstrap-zone .col-md-4 {
        flex: 0 0 33.333333% !important;
        max-width: 33.333333% !important;
    }
    .bootstrap-zone .col-md-5 {
        flex: 0 0 41.666667% !important;
        max-width: 41.666667% !important;
    }
    .bootstrap-zone .col-md-6 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
    .bootstrap-zone .col-md-8 {
        flex: 0 0 66.666667% !important;
        max-width: 66.666667% !important;
    }
    .bootstrap-zone .col-md-10 {
        flex: 0 0 83.333333% !important;
        max-width: 83.333333% !important;
    }
}

@media (min-width: 992px) {
    .bootstrap-zone .col-lg-2 {
        flex: 0 0 16.666667% !important;
        max-width: 16.666667% !important;
    }
    .bootstrap-zone .col-lg-3 {
        flex: 0 0 25% !important;
        max-width: 25% !important;
    }
    .bootstrap-zone .col-lg-4 {
        flex: 0 0 33.333333% !important;
        max-width: 33.333333% !important;
    }
    .bootstrap-zone .col-lg-6 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
    .bootstrap-zone .col-lg-8 {
        flex: 0 0 66.666667% !important;
        max-width: 66.666667% !important;
    }
    .bootstrap-zone .col-lg-10 {
        flex: 0 0 83.333333% !important;
        max-width: 83.333333% !important;
    }
}

@media (min-width: 1200px) {
    .bootstrap-zone .col-xl-3 {
        flex: 0 0 25% !important;
        max-width: 25% !important;
    }
    .bootstrap-zone .col-xl-4 {
        flex: 0 0 33.333333% !important;
        max-width: 33.333333% !important;
    }
    .bootstrap-zone .col-xl-6 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
    .bootstrap-zone .col-xl-7 {
        flex: 0 0 58.333333% !important;
        max-width: 58.333333% !important;
    }
}

@media (min-width: 1400px) {
    .bootstrap-zone .col-xxl-6 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
}

/* Industry cards use same styling as service cards */
.bootstrap-zone .industry-card {
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    padding: 1rem !important;
    border-radius: 12px !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    max-width: 376px !important;
    height: auto !important;
}

.bootstrap-zone .industry-card h4 {
    font-weight: 700 !important;
    font-size: 1.75rem !important;
    color: #212529 !important;
}

.bootstrap-zone .industry-card:hover {
    background-color: rgba(35, 65, 217, 0.05) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.bootstrap-zone .industry-card:hover .service-icon {
    transform: scale(1.1) !important;
}
