.invite-section {
    background: var(--bg-cream);
    padding: 80px 30px;
}

.section-divider {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.section-divider-line {
    width: 40px;
    height: 1px;
    background: var(--primary-light);
}

.section-divider-icon {
    color: var(--primary-color);
    font-size: 16px;
}

.invite-title {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 28px;
    color: var(--text-dark);
    letter-spacing: 6px;
    margin-bottom: 30px;
    text-align: center;
}

.invite-text {
    font-size: 15px;
    line-height: 2.2;
    color: var(--text-light);
    text-align: center;
    max-width: 320px;
    margin: 0 auto 40px;
}

.invite-poem {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 18px;
    line-height: 2.5;
    color: var(--text-dark);
    text-align: center;
    letter-spacing: 3px;
    padding: 30px 0;
    position: relative;
}

.invite-poem::before,
.invite-poem::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 1px;
    background: var(--primary-light);
}

.invite-poem::before { top: 0; }
.invite-poem::after { bottom: 0; }
