.section-title-container {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.section-title {
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.2;
    font-size: 42px;
    color: black;
    font-weight: normal;
}

.section-title-container::after {
    content: "";
    display: block;
    width: 80px; /* Much shorter line */
    height: 3px;
    background-color: #d4b044; /* Gold color */
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}