/* Section Styles */
.section {
    padding: 5rem 0;
    position: relative;
    transition: background-color 0.3s ease;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    color: var(--text-primary);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--text-primary);
    clip-path: polygon(0 0, 90% 0, 100% 100%, 10% 100%);
}

