/* Service Introduction Section */
.service-intro {
    background: linear-gradient(135deg, #f8f6f0 0%, #fdfbf7 100%);
    padding: 50px 30px;
    margin: 40px 0 35px;
    text-align: center;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    position: relative;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* Decorative corner borders for invitation feel */
.service-intro::before,
.service-intro::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid #d4af37;
}

.service-intro::before {
    top: -2px;
    left: -2px;
    border-right: none;
    border-bottom: none;
    border-top-left-radius: 12px;
}

.service-intro::after {
    bottom: -2px;
    right: -2px;
    border-left: none;
    border-top: none;
    border-bottom-right-radius: 12px;
}

.service-intro-icon {
    color: #d4af37;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.service-intro-icon svg {
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
}

.service-intro-text {
    font-family: 'Noto Serif KR', serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2d2a26;
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.service-intro-text br {
    display: block;
    margin-bottom: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .service-intro {
        padding: 40px 20px;
        margin: 30px 0 25px;
    }

    .service-intro-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .service-intro-icon svg {
        width: 28px;
        height: 28px;
    }

    .service-intro-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .service-intro::before,
    .service-intro::after {
        width: 30px;
        height: 30px;
    }
}

@media (min-width: 769px) {
    .service-intro {
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
}