.about-section {
    background-color: var(--void-black);
}

.about-section h3 {
    color: var(--text-subtitle);
    margin-top: 30px;
}

.about-video {
    border-radius: 30px;
    margin-top: 30px;
    width: 100%;
    height: auto;
    max-width: 600px;
}

.about-feature-list {
    max-width: 600px;
    list-style-position: outside;
    padding-inline-start: 1.5em; /* Space for bullets outside the box */
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: start;          /* Natural reading flow */
}

.about-feature-list li {
    display: list-item;         /* Keeps the bullet attached */
}

.feature-content-wrapper {
    display: inline;            /* This is the key to single-line flow */
    vertical-align: top;
}

.feature-item-primary {
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 1px;
    margin-inline-end: 5px;    /* Space between primary and secondary */
}

.feature-item-secondary {
    display: inline;            /* Allows it to start on the same line */
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.4;
}
