<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Features Block */
.features-block {
    margin-bottom: 40px;
}

/* Block Title */
.features-block-title {
    color: #001233;
    text-align: center;
    margin-bottom: 30px;
    font-size: var(--title-font-size);
    font-weight: inherit;
}

/* Different font sizes and weights for dynamic title tags */
h1.features-block-title { --title-font-size: 42px; --title-font-weight: 800; font-weight: 800 !important;}
h2.features-block-title { --title-font-size: 36px; --title-font-weight: 700; font-weight: 700 !important;}
h3.features-block-title { --title-font-size: 32px; --title-font-weight: 600; font-weight: 600 !important;}
h4.features-block-title { --title-font-size: 28px; --title-font-weight: 500; font-weight: 500 !important;}
h5.features-block-title { --title-font-size: 24px; --title-font-weight: 400; font-weight: 400 !important;}
h6.features-block-title { --title-font-size: 20px; --title-font-weight: 300; font-weight: 300 !important;}
p.features-block-title { --title-font-size: 18px; --title-font-weight: 400; font-weight: 400 !important; }

/* Features List */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Feature Item */
.feature-item {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 12px;
    padding: 30px 30px;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    gap: 20px;
}

/* Feature Icon */
.feature-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    flex-shrink: 0; /* Ensure icon doesn't resize */
}

/* Feature Title */
.feature-title {
    font-size: 20px;
    font-weight: bold;
    color: #001233;
    margin: 0;
}

/* Feature Description */
.feature-description {
    font-size: 16px;
    color: #555;
    margin: 8px 0 0; /* Spacing below the title */
    line-height: 1.5;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    h1.features-block-title { font-size: 32px; }
    h2.features-block-title { font-size: 28px; }
    h3.features-block-title { font-size: 26px; }
    h4.features-block-title { font-size: 24px; }
    h5.features-block-title { font-size: 22px; }
    h6.features-block-title { font-size: 20px; }
    p.features-block-title { font-size: 16px; }

    .feature-item {
        flex-direction: column;
        text-align: center;
    }

    .feature-icon {
        margin: 0 auto 10px; /* Center icon for smaller screens */
    }

    .feature-title {
        font-size: 18px;
    }

    .feature-description {
        font-size: 14px;
    }
}
</pre></body></html>