.content_section {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.content_section_inner {
    width: 100%;
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.content_section_title {
    font-size: 60px;
    line-height: 1.1;
    color: var(--primary, #0A3956);
    margin: 0 0 20px;
}

.content_section_body {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #505050;
}

.content_section_body p:last-child {
    margin-bottom: 0;
}

