.elementor-kit-6{--e-global-color-primary:#005A9C;--e-global-color-secondary:#2B7C85;--e-global-color-text:#333333;--e-global-color-accent:#FF6B35;--e-global-color-cd5d51d:#005A9C;--e-global-color-66236ea:#005A9C;--e-global-color-cdb9c0c:#333333;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Inter";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;color:#333333;font-family:"Inter", Inter, "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;font-size:16px;}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-kit-6 a{font-family:"Inter", Inter, "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;}.elementor-kit-6 h1{color:#005A9C;font-family:"Inter", Inter, "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;font-size:42px;}.elementor-kit-6 h2{color:#005A9C;font-family:"Inter", Inter, "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;font-size:36px;}.elementor-kit-6 h3{color:#333333;font-family:"Inter", Inter, "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;font-size:24px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */body {
  font-family: Inter, "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Basic circle styling */
.circle-image img {
    border-radius: 50%;
    overflow: hidden;
    object-fit: cover;
}

/* Position classes */
.circle-1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.circle-2 {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.circle-3 {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 2;
}

.circle-4 {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.circle-5 {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 4;
}

<style>
    /* Base styles for the sliding fee container */
    .sliding-fee-container {
        max-width: 100%;
        margin: 0 auto;
        font-family: var(--e-global-typography-text-font-family, Sans-serif);
        line-height: 1.5;
    }

    /* Header styles */
    .sliding-fee-header {
        margin-bottom: 20px;
        text-align: center;
    }

    .sliding-fee-header h2 {
        color: var(--e-global-color-primary);
        margin-bottom: 5px;
        font-weight: 600;
    }

    .subtitle {
        font-weight: 500;
        margin-bottom: 15px;
    }

    /* Table responsive wrapper */
    .table-responsive {
        overflow-x: auto;
        margin-bottom: 30px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        border-radius: 4px;
    }

    /* Base table styles */
    .sliding-fee-table {
        width: 100%;
        border-collapse: collapse;
        border-spacing: 0;
        color: #333;
        margin-bottom: 0;
    }

    .sliding-fee-table th,
    .sliding-fee-table td {
        padding: 12px 8px;
        text-align: center;
        border: 1px solid #ddd;
    }

    /* Header styles */
    .sliding-fee-table thead th {
        background-color: var(--e-global-color-primary, #005A87);
        color: white;
        font-weight: 600;
        position: sticky;
        top: 0;
        z-index: 10;
    }

    /* Row styles */
    .sliding-fee-table tbody tr:nth-child(even) {
        background-color: #f8f8f8;
    }

    .sliding-fee-table tbody tr:hover {
        background-color: #f1f1f1;
    }

    /* Left-align row headers */
    .sliding-fee-table th[scope="row"] {
        text-align: left;
        background-color: #f0f0f0;
    }

    /* Discount row styling */
    .discount-row {
        background-color: #e6f2ff !important;
        font-weight: 600;
    }

    .discount-row td {
        font-size: 1.1em;
    }

    /* Notes section */
    .sliding-fee-notes {
        background-color: #f9f9f9;
        padding: 20px;
        border-radius: 4px;
        margin-top: 20px;
    }

    .note-heading {
        font-weight: 600;
        margin-bottom: 15px;
    }

    .notes-list {
        padding-left: 20px;
        margin-bottom: 0;
    }

    .notes-list li {
        margin-bottom: 8px;
    }

    /* Responsive styles */
    @media screen and (max-width: 992px) {
        .sliding-fee-table th,
        .sliding-fee-table td {
            padding: 10px 5px;
            font-size: 0.9em;
        }
    }

    @media screen and (max-width: 768px) {
        .sliding-fee-table th,
        .sliding-fee-table td {
            padding: 8px 3px;
            font-size: 0.8em;
        }
        
        .sliding-fee-header h2 {
            font-size: 1.5em;
        }
        
        .subtitle {
            font-size: 0.9em;
        }
    }

    /* High contrast focus indicators for accessibility */
    .sliding-fee-table th:focus,
    .sliding-fee-table td:focus {
        outline: 2px solid #4a90e2;
    }
</style>/* End custom CSS */