.elementor-kit-110{--e-global-color-primary:#75BEE6;--e-global-color-secondary:#54595F;--e-global-color-text:#000000;--e-global-color-accent:#203864;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--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;}.elementor-kit-110 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:100%;}.e-con{--container-max-width:100%;}.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);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@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 */h1.entry-title {
    display: none;
}

.state-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.state-column {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.toggle-item {
    border-bottom: 1px solid #ddd;
}
.toggle-header {
    font-size: 15px;
    font-weight: 600;
    padding: 6px 0;
    cursor: pointer;
    color: #004c75;
    display: flex;
    align-items: center;
    white-space: nowrap;
}
.toggle-header:before {
    content: "▸";
    margin-right: 8px;
    transition: transform 0.2s ease;
}
.toggle-header.active:before {
    transform: rotate(90deg);
}
.toggle-content {
    display: none;
    padding: 5px 0 10px 15px;
}
.toggle-content.open {
    display: block;
}
.toggle-content ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.toggle-content li {
    font-size: 14px;
    padding: 3px 0;
}
.toggle-content li a {
    text-decoration: none;
    color: #333;
}
.toggle-content li a:hover {
    text-decoration: underline;
    color: #0073aa;
}

/* Tablet: 2 columns */
@media (max-width: 1024px) {
    .state-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile: 1 column */
@media (max-width: 768px) {
    .state-grid {
        grid-template-columns: 1fr;
    }
}/* End custom CSS */