
.hero-content .rich-text__inner {
    text-align: center;
    padding: 0px 0; 
}

.hero-content .rich-text__inner .h1-animated {
    font-size: 3.2em;
    color: white;
    margin-bottom: 10px;
    line-height: 1.5;
    font-weight: bold;
}

.hero-content .animated-marker {
    position: relative;
    display: inline-block;
}

.hero-content .animated-marker svg.svg-marker {
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 14px;
    overflow: visible;
}

.hero-content .animated-marker svg.svg-marker path {
    stroke: var(--marker-color, #007bff);
    stroke-width: 6;
    stroke-linecap: round;
    fill: none;
    stroke-dasharray: 195.02798461914062;
    stroke-dashoffset: 195.02798461914062;
    animation: drawMarkerAnimation 1s ease-out forwards 0.5s;
}

@keyframes drawMarkerAnimation {
    to {
        stroke-dashoffset: 0;
    }
}

.hero-content .rich-text__inner .sub-text p {
    font-size: 1.3em;
    color: white;
    margin-top: 5px;
    margin-bottom: 5px;
}