.details-section {
    background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg-cream) 100%);
    padding: 80px 20px;
}

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

.details-card {
    background: var(--white);
    border-radius: 8px;
    padding: 35px 25px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 2px 20px rgba(196, 149, 106, 0.08);
    border: 1px solid rgba(196, 149, 106, 0.1);
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(196, 149, 106, 0.08);
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail-icon svg {
    width: 18px;
    height: 18px;
    fill: var(--primary-color);
}

.detail-content {
    flex: 1;
}

.detail-label {
    font-size: 12px;
    color: var(--text-lighter);
    margin-bottom: 4px;
    letter-spacing: 2px;
}

.detail-value {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.6;
}
