/* Simple Content Block Styles */
.simple-content-section {
    width: 100%;
    padding: 3rem 0;
    background: #fff;
    color: #1A2236;
    display: flex;
    justify-content: center;
}
.blz-simple-content-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    text-align: left;
    padding-top: 4rem;
}
@media (max-width: 1024px) {
    .blz-simple-content-inner {
        padding: 0 2rem;
    }
}
@media (max-width: 768px) {
    .blz-simple-content-inner {
        padding: 0 1.5rem;
    }
}
@media (max-width: 480px) {
    .blz-simple-content-inner {
        padding: 0 1rem;
    }
}

/* Spacing utilities for section top and bottom */
.simple-content-spacing-top--none { padding-top: 0 !important; }
.simple-content-spacing-top--small { padding-top: 1.5rem !important; }
.simple-content-spacing-top--medium { padding-top: 4rem !important; }
.simple-content-spacing-top--large { padding-top: 6rem !important; }
.simple-content-spacing-top--xlarge { padding-top: 8rem !important; }

.simple-content-spacing-bottom--none { padding-bottom: 0 !important; }
.simple-content-spacing-bottom--small { padding-bottom: 1.5rem !important; }
.simple-content-spacing-bottom--medium { padding-bottom: 4rem !important; }
.simple-content-spacing-bottom--large { padding-bottom: 6rem !important; }
.simple-content-spacing-bottom--xlarge { padding-bottom: 8rem !important; }

.simple-content-title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 900;
    margin-bottom: 1.25rem;
    color: #0A0F1C;
    line-height: 1.1;
}
.simple-content-description {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 1.375rem;
    line-height: 1.6;
    letter-spacing: -0.01em;
    color: #0A0F1C;
}
@media (max-width: 768px) {
    .simple-content-title {
        font-size: 1.5rem;
    }
    .simple-content-description {
        font-size: 1rem;
    }
    .simple-content-spacing-top--medium { padding-top: 2rem !important; }
    .simple-content-spacing-bottom--medium { padding-bottom: 2rem !important; }
} 