.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-accent);
    text-shadow: 2px 2px 4px var(--shadow-dark);
    position: relative;
    z-index: 2;
}

.section-title::before,
.section-title::after {
    content: "⚜️";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

.section-title::before {
    left: -50px;
}

.section-title::after {
    right: -50px;
    animation-delay: 1.5s;
}