.service-container {
    max-width: 480px;
    margin: 48px auto;
    background: #24242b;
    border-radius: 22px;
    box-shadow: 0 4px 24px rgba(20,22,30,0.15);
    padding: 38px 32px;
}

.service-container h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 24px;
}

.field-row {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    align-items: stretch;
}

.field-row input[type="text"] {
    flex: 2;
    margin-bottom: 0;
}

.field-row button {
    flex: 1;
    min-width: 120px;
    border-radius: 14px;
    font-size: 1.08rem;
}

.brief-fields-list {
    list-style: none;
    margin: 0 0 20px 0;
    padding: 0;
}

.brief-fields-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #292934;
    color: #fafaff;
    font-size: 1.08rem;
    padding: 14px 18px;
    margin-bottom: 10px;
    border-radius: 12px;
    border: 1px solid #35353b;
}

.remove-btn {
    color: #ff7474;
    background: none;
    border: none;
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
    margin-left: 18px;
}