:root {
    --sbm-dark-blue: #154061;
    --sbm-medium-blue: #2196C6;
    --sbm-light-beige: #F2E6D9;
    --sbm-orange-yellow: #F5B219;
    --sbm-white: #FFFFFF;
    --sbm-text-light: #F8F8F8;
    --sbm-text-dark: #333333;
}
body {
    font-family: "Open Sans", sans-serif;
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    line-height: 1.6;
    color: var(--sbm-text-dark);
    background-color: var(--sbm-white);
}
h1, h2, h3, h4, h5, h6 {
    font-family: Montserrat, sans-serif;
    color: var(--sbm-dark-blue);
    margin-top: 0px;
}
a {
    text-decoration: none;
    color: var(--sbm-medium-blue);
}
.home-container {
    max-width: 1200px;
    margin: 0px auto;
    padding: 20px;
}
.home-button {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    font-family: Montserrat, sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    border: none;
}
.home-button.primary {
    background-color: var(--sbm-dark-blue);
    color: var(--sbm-white);
}
.home-button.primary:hover {
    background-color: rgb(26, 86, 130);
    transform: translateY(-2px);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 8px;
}
#header {
    height: 80px;
    background-color: var(--sbm-white);
    border-bottom: 1px solid rgb(224, 224, 224);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--sbm-dark-blue);
    text-align: center;
    position: sticky;
    top: 0px;
    z-index: 1000;
}
.home-hero-section {
    background-color: var(--sbm-light-beige);
    position: relative;
    padding: 80px 0px;
    overflow: hidden;
    text-align: center;
}
.home-hero-section .hero-background-image-wrapper {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.home-hero-section .hero-background-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}
.home-hero-section .hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0px auto;
    padding: 0px 20px;
}
.home-hero-section h1 {
    font-size: 4.2em;
    margin-bottom: 20px;
    color: var(--sbm-dark-blue);
    line-height: 1.1;
}
.home-hero-section .hero-tagline {
    font-size: 1.6em;
    color: var(--sbm-dark-blue);
    margin-bottom: 25px;
    font-weight: 600;
}
.home-hero-section .hero-description {
    font-size: 1.2em;
    color: var(--sbm-dark-blue);
    margin-bottom: 40px;
}
.home-hero-section .hero-cta-button {
    background-color: var(--sbm-dark-blue);
    color: var(--sbm-white);
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: 700;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.home-hero-section .hero-cta-button:hover {
    background-color: rgb(14, 48, 75);
    transform: translateY(-3px);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 8px 16px;
}
.home-intro-section {
    background-color: var(--sbm-white);
    padding: 100px 20px;
    text-align: center;
}
.home-intro-section .intro-content {
    max-width: 800px;
    margin: 0px auto;
}
.home-intro-section h2 {
    font-size: 3em;
    color: var(--sbm-dark-blue);
    margin-bottom: 30px;
}
.home-intro-section p {
    font-size: 1.1em;
    color: var(--sbm-dark-blue);
    margin-bottom: 20px;
}
.home-solution-section {
    background-color: var(--sbm-medium-blue);
    color: var(--sbm-white);
    padding: 100px 20px;
}
.home-solution-section .solution-container {
    max-width: 1200px;
    margin: 0px auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}
.home-solution-section .solution-content, .home-solution-section .solution-image-wrapper {
    flex: 1 1 0%;
    min-width: 300px;
}
.home-solution-section .solution-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}
.home-solution-section .solution-decorative-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 8px 25px;
    transition: transform 0.3s;
}
.home-solution-section .solution-decorative-image:hover {
    transform: scale(1.02);
}
.home-solution-section h2 {
    font-size: 3em;
    color: var(--sbm-white);
    margin-bottom: 30px;
}
.home-solution-section p {
    font-size: 1.1em;
    color: var(--sbm-text-light);
    margin-bottom: 20px;
}
.home-benefits-section {
    background-color: var(--sbm-light-beige);
    padding: 100px 20px;
    text-align: center;
}
.home-benefits-section h2 {
    font-size: 3em;
    color: var(--sbm-dark-blue);
    margin-bottom: 50px;
}
.benefits-slider-container {
    max-width: 1000px;
    margin: 0px auto;
    position: relative;
    overflow: hidden;
    padding-bottom: 60px;
}
.benefits-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 30px;
    justify-content: center;
}
.benefit-card {
    background-color: var(--sbm-white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 10px 30px;
    flex: 1 1 0%;
    min-width: 280px;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s, box-shadow 0.3s;
}
.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 40px;
}
.benefit-card h3 {
    font-size: 1.8em;
    color: var(--sbm-dark-blue);
    margin-bottom: 15px;
}
.benefit-card p {
    font-size: 1.1em;
    color: var(--sbm-text-dark);
}
.slider-controls {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}
.slider-prev-btn, .slider-next-btn {
    background-color: var(--sbm-dark-blue);
    color: var(--sbm-white);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 1.5em;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, transform 0.3s;
}
.slider-prev-btn:hover, .slider-next-btn:hover {
    background-color: var(--sbm-medium-blue);
    transform: scale(1.1);
}
.slider-dots {
    display: flex;
    gap: 10px;
}
.slider-dot {
    width: 12px;
    height: 12px;
    background-color: rgba(21, 64, 97, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}
.slider-dot.active {
    background-color: var(--sbm-dark-blue);
}
@media (min-width: 769px) {
    .benefits-slider {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        flex-wrap: nowrap;
        transform: translateX(0px) !important;
    }
    .benefit-card {
        flex-shrink: 0;
    }
    .slider-controls {
        display: none;
    }
}
@media (max-width: 768px) {
    .benefits-slider-container {
        padding-bottom: 80px;
    }
    .benefits-slider {
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        justify-content: flex-start;
    }
    .benefits-slider::-webkit-scrollbar {
        display: none;
    }
    .benefit-card {
        flex: 0 0 calc(100% - 40px);
        scroll-snap-align: center;
        margin: 0px 20px;
    }
    .slider-prev-btn, .slider-next-btn {
        display: flex;
    }
    .benefits-slider-container {
        overflow: visible;
    }
}
.home-secondary-cta-section {
    background-color: var(--sbm-orange-yellow);
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.home-secondary-cta-section .secondary-cta-background-image-wrapper {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.home-secondary-cta-section .secondary-cta-background-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}
.home-secondary-cta-section .secondary-cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0px auto;
}
.home-secondary-cta-section h2 {
    font-size: 3em;
    color: var(--sbm-dark-blue);
    margin-bottom: 30px;
}
.home-secondary-cta-section p {
    font-size: 1.1em;
    color: var(--sbm-dark-blue);
    margin-bottom: 40px;
}
.home-secondary-cta-section .secondary-cta-button {
    background-color: var(--sbm-dark-blue);
    color: var(--sbm-white);
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: 700;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.home-secondary-cta-section .secondary-cta-button:hover {
    background-color: rgb(14, 48, 75);
    transform: translateY(-3px);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 8px 16px;
}
.home-footer {
    background-color: var(--sbm-white);
    color: var(--sbm-dark-blue);
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid rgb(224, 224, 224);
}
.home-footer .footer-content {
    max-width: 1200px;
    margin: 0px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.home-footer .footer-copyright {
    margin: 0px;
    font-size: 0.95em;
    flex-grow: 1;
    text-align: left;
}
.home-footer .footer-nav {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}
.home-footer .footer-nav .footer-link {
    color: var(--sbm-dark-blue);
    font-weight: 600;
    transition: color 0.3s;
}
.home-footer .footer-nav .footer-link:hover {
    color: var(--sbm-medium-blue);
    text-decoration: underline;
}
@media (max-width: 1024px) {
    .home-hero-section h1 {
        font-size: 3.5em;
    }
    .home-hero-section .hero-tagline {
        font-size: 1.4em;
    }
    .home-hero-section .hero-description {
        font-size: 1.1em;
    }
    .home-intro-section h2, .home-solution-section h2, .home-benefits-section h2, .home-secondary-cta-section h2 {
        font-size: 2.5em;
    }
    .home-solution-section .solution-container {
        flex-direction: column;
        text-align: center;
    }
    .home-solution-section .solution-image-wrapper {
        order: -1;
    }
    .home-footer .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .home-footer .footer-copyright {
        text-align: center;
    }
}
@media (max-width: 768px) {
    .home-hero-section {
        padding: 60px 0px;
    }
    .home-hero-section h1 {
        font-size: 2.8em;
    }
    .home-hero-section .hero-tagline {
        font-size: 1.2em;
    }
    .home-hero-section .hero-cta-button {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .home-intro-section, .home-solution-section, .home-benefits-section, .home-secondary-cta-section {
        padding: 60px 20px;
    }
    .home-intro-section h2, .home-solution-section h2, .home-benefits-section h2, .home-secondary-cta-section h2 {
        font-size: 2em;
    }
    .home-intro-section p, .home-solution-section p, .home-secondary-cta-section p, .benefit-card p {
        font-size: 1em;
    }
    .home-footer .footer-nav {
        flex-direction: column;
        gap: 15px;
    }
    .home-footer .footer-copyright {
        margin-bottom: 20px;
    }
}
@media (max-width: 480px) {
    .home-hero-section h1 {
        font-size: 2.2em;
    }
    .home-hero-section .hero-tagline {
        font-size: 1em;
    }
    .home-intro-section h2, .home-solution-section h2, .home-benefits-section h2, .home-secondary-cta-section h2 {
        font-size: 1.8em;
    }
    .home-hero-section .hero-cta-button, .home-secondary-cta-section .secondary-cta-button {
        font-size: 1em;
        padding: 12px 25px;
    }
    .benefit-card {
        padding: 30px 20px;
    }
    .slider-prev-btn, .slider-next-btn {
        width: 40px;
        height: 40px;
        font-size: 1.3em;
    }
    .slider-dot {
        width: 10px;
        height: 10px;
    }
}
.editor-tool, [data-editor-tool] {
    outline: none !important;
    cursor: default !important;
}